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[]> {
99
99
if ( ! value )
100
100
return Promise . resolve ( [ ] as T [ ] ) ;
101
101
102
- if ( ( value as Promise < Seq < T > > ) . then )
102
+ if ( ( value as Promise < Seq < T > > ) . then != undefined )
103
103
return ( value as Promise < Seq < T > > ) . then ( a => asArray ( a ) ) ;
104
104
105
105
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) {
63
63
< p >
64
64
{ message === undefined ? SelectorMessage . PleaseChooseAValueToContinue . niceToString ( ) : message }
65
65
</ p >
66
- < ValueLine ctx = { ctx }
66
+ < ValueLine
67
67
formGroupStyle = { props . labelText ? "Basic" : "SrOnly" } { ...vlp } onChange = { valueOnChanged } />
68
68
</ div >
69
69
< div className = "modal-footer" >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<TargetFramework >netcoreapp3.1</TargetFramework >
5
- <TypeScriptToolsVersion >3.8 </TypeScriptToolsVersion >
5
+ <TypeScriptToolsVersion >3.9 </TypeScriptToolsVersion >
6
6
<TypeScriptBuildMode >true</TypeScriptBuildMode >
7
7
<TargetLatestRuntimePatch >true</TargetLatestRuntimePatch >
8
8
<Nullable >enable</Nullable >
34
34
</PropertyGroup >
35
35
36
36
<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 " >
39
39
<IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
40
40
<PrivateAssets >all</PrivateAssets >
41
41
</PackageReference >
Original file line number Diff line number Diff line change 15
15
16
16
<ItemGroup >
17
17
<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 " />
21
21
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.6.1" />
22
22
<PackageReference Include =" Signum.Analyzer" Version =" 2.7.0" />
23
23
<PackageReference Include =" xunit" Version =" 2.4.1" />
You can’t perform that action at this time.
0 commit comments