File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ function asPromiseArray<T>(value: Seq<T> | Promise<Seq<T>>): Promise<T[]> {
9999 if ( ! value )
100100 return Promise . resolve ( [ ] as T [ ] ) ;
101101
102- if ( ( value as Promise < Seq < T > > ) . then )
102+ if ( ( value as Promise < Seq < T > > ) . then != undefined )
103103 return ( value as Promise < Seq < T > > ) . then ( a => asArray ( a ) ) ;
104104
105105 return Promise . resolve ( asArray ( value as Seq < T > ) )
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export default function ValueLineModal(p: ValueLineModalProps) {
6363 < p >
6464 { message === undefined ? SelectorMessage . PleaseChooseAValueToContinue . niceToString ( ) : message }
6565 </ p >
66- < ValueLine ctx = { ctx }
66+ < ValueLine
6767 formGroupStyle = { props . labelText ? "Basic" : "SrOnly" } { ...vlp } onChange = { valueOnChanged } />
6868 </ div >
6969 < div className = "modal-footer" >
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <TargetFramework >netcoreapp3.1</TargetFramework >
5- <TypeScriptToolsVersion >3.8 </TypeScriptToolsVersion >
5+ <TypeScriptToolsVersion >3.9 </TypeScriptToolsVersion >
66 <TypeScriptBuildMode >true</TypeScriptBuildMode >
77 <TargetLatestRuntimePatch >true</TargetLatestRuntimePatch >
88 <Nullable >enable</Nullable >
3434 </PropertyGroup >
3535
3636 <ItemGroup >
37- <PackageReference Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version =" 3.1.3 " />
38- <PackageReference Include =" Microsoft.TypeScript.MSBuild" Version =" 3.8.3 " >
37+ <PackageReference Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version =" 3.1.4 " />
38+ <PackageReference Include =" Microsoft.TypeScript.MSBuild" Version =" 3.9.2 " >
3939 <IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
4040 <PrivateAssets >all</PrivateAssets >
4141 </PackageReference >
Original file line number Diff line number Diff line change 1515
1616 <ItemGroup >
1717 <PackageReference Include =" dotMorten.Microsoft.SqlServer.Types" Version =" 1.1.0" />
18- <PackageReference Include =" Microsoft.Extensions.Configuration" Version =" 3.1.3 " />
19- <PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 3.1.3 " />
20- <PackageReference Include =" Microsoft.Extensions.Configuration.UserSecrets" Version =" 3.1.3 " />
18+ <PackageReference Include =" Microsoft.Extensions.Configuration" Version =" 3.1.4 " />
19+ <PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 3.1.4 " />
20+ <PackageReference Include =" Microsoft.Extensions.Configuration.UserSecrets" Version =" 3.1.4 " />
2121 <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.6.1" />
2222 <PackageReference Include =" Signum.Analyzer" Version =" 2.7.0" />
2323 <PackageReference Include =" xunit" Version =" 2.4.1" />
You can’t perform that action at this time.
0 commit comments