!2577 fix(#I4Y6AR): not call OnQueryAsync in edit in cell mode

* chore: bump version 6.4.7
* fix: 修复 InCell 模式更新不刷新页面问题
This commit is contained in:
Argo 2022-03-25 08:07:15 +00:00
parent b480ddb4ce
commit ace44f11ad
2 changed files with 3 additions and 6 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<Version>6.4.7-beta02</Version>
<Version>6.4.7</Version>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">

View File

@ -459,11 +459,8 @@ public partial class Table<TItem>
{
SelectedRows.Clear();
EditInCell = false;
if (AddInCell)
{
AddInCell = false;
await QueryAsync();
}
AddInCell = false;
await QueryAsync();
}
}
await ToggleLoading(false);