Skip to content

Commit 54bd37a

Browse files
author
Raj Kumar Sri Ramulu
committed
Fixed the param related error
1 parent 540278e commit 54bd37a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_05_Enum_Filters.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@context.DOB
1818
</GridColumn>
1919
<GridColumn TItem="User" HeaderText="Status" PropertyName="Status" FilterTextboxWidth="170">
20-
@(typeof(UserStatus).GetDisplayName(context.Status))
20+
@(typeof(UserStatus).GetDisplayName(context.Status.ToString()))
2121
</GridColumn>
2222
</GridColumns>
2323

0 commit comments

Comments
 (0)