Skip to content

Commit

Permalink
adds missing non-nullable DateOnly typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Lübker committed Nov 29, 2024
1 parent f8464d6 commit 025a4d3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Radzen.Blazor/QueryableExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,7 @@ internal static string GetColumnODataFilter<T>(RadzenDataGridColumn<T> column, o
column.FilterPropertyType == typeof(DateTime?) ||
column.FilterPropertyType == typeof(DateTimeOffset) ||
column.FilterPropertyType == typeof(DateTimeOffset?) ||
column.FilterPropertyType == typeof(DateOnly) ||
column.FilterPropertyType == typeof(DateOnly?))
{
if (columnFilterOperator == FilterOperator.IsNull || columnFilterOperator == FilterOperator.IsNotNull)
Expand Down

0 comments on commit 025a4d3

Please sign in to comment.