Commit 8308fb4 1 parent 233ea83 commit 8308fb4 Copy full SHA for 8308fb4
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Razor" >
2
2
3
3
<PropertyGroup >
4
- <Version >9.0.2-beta02 </Version >
4
+ <Version >9.0.2-beta03 </Version >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change @@ -433,7 +433,7 @@ public async ValueTask TriggerKeyDown(string key)
433
433
/// <param name="items"></param>
434
434
/// <returns></returns>
435
435
[ JSInvokable ]
436
- public ValueTask < List < CheckboxState > > GetParentsState ( List < int > items )
436
+ public Task < List < CheckboxState > > GetParentsState ( List < int > items )
437
437
{
438
438
var rows = Rows ;
439
439
var result = items . Select ( i =>
@@ -447,7 +447,7 @@ public ValueTask<List<CheckboxState>> GetParentsState(List<int> items)
447
447
item . CheckedState = checkedState ;
448
448
return checkedState ;
449
449
} ) . ToList ( ) ;
450
- return ValueTask . FromResult ( result ) ;
450
+ return Task . FromResult ( result ) ;
451
451
}
452
452
453
453
private static bool IsExpand ( TreeViewItem < TItem > item ) => item . IsExpand && item . Items . Count > 0 ;
You can’t perform that action at this time.
0 commit comments