Skip to content

Commit

Permalink
feat(TableFilter): add @ keyword (#4932)
Browse files Browse the repository at this point in the history
* 修复 LookupFilter 组件属性 LookupServiceKey 赋值为 Column.LookupServiceKey 字符串问题。

* chore: bump version 9.1.9-beta03

Co-Authored-By: AiZhen <53560110+AiYuZhen@users.noreply.github.com>
Co-Authored-By: Chason <yuchen7701@foxmail.com>

---------

Co-authored-by: Argo Zhang <argo@live.ca>
Co-Authored-By: Chason <yuchen7701@foxmail.com>
  • Loading branch information
3 people authored Dec 24, 2024
1 parent a1e4a1a commit 4059dc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/BootstrapBlazor.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.1.9-beta02</Version>
<Version>9.1.9-beta03</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/Components/Filters/TableFilter.razor
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ else
}
else if (Column.IsLookup())
{
<LookupFilter Lookup="Column.Lookup" LookupService="Column.LookupService" LookupServiceKey="Column.LookupServiceKey" LookupServiceData="Column.LookupServiceData" LookupStringComparison="Column.LookupStringComparison" Type="Column.PropertyType" IsShowSearch="Column.ShowSearchWhenSelect"></LookupFilter>
<LookupFilter Lookup="Column.Lookup" LookupService="Column.LookupService" LookupServiceKey="@Column.LookupServiceKey" LookupServiceData="Column.LookupServiceData" LookupStringComparison="Column.LookupStringComparison" Type="Column.PropertyType" IsShowSearch="Column.ShowSearchWhenSelect"></LookupFilter>
}
else
{
Expand Down

0 comments on commit 4059dc2

Please sign in to comment.