Skip to content

Commit

Permalink
Update package 4.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavnavar committed Aug 12, 2023
1 parent df6bd24 commit edd0b83
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion GridBlazor/GridBlazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<LangVersion>11.0</LangVersion>
<GenerateEmbeddedFilesManifest>True</GenerateEmbeddedFilesManifest>
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems>
<Version>4.0.5</Version>
<Version>4.0.6</Version>
<Title>GridBlazor</Title>
<Description>Grid components for Blazor</Description>
<Summary>Grid components for Blazor</Summary>
Expand Down
2 changes: 1 addition & 1 deletion GridCore/GridCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems>
<Product>GridCore</Product>
<PackageId>GridCore</PackageId>
<Version>6.0.4</Version>
<Version>6.0.6</Version>
<Title>GridCore</Title>
<Description>Grid core component</Description>
<Summary>Grid core component</Summary>
Expand Down
2 changes: 1 addition & 1 deletion GridMvc/GridMvc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems>
<Product>GridMvc</Product>
<PackageId>GridMvcCore</PackageId>
<Version>6.0.4</Version>
<Version>6.0.6</Version>
<Title>GridMvc</Title>
<Description>ASP.NET MVC Grid component</Description>
<Summary>ASP.NET MVC Grid component</Summary>
Expand Down
3 changes: 3 additions & 0 deletions GridShared/Filtering/DefaultColumnFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@ public string GetFilter(IEnumerable<ColumnFilterValue> values)
{
if (value == ColumnFilterValue.Null)
continue;
else if (value.FilterType != GridFilterType.IsNull && value.FilterType != GridFilterType.IsNotNull
&& string.IsNullOrWhiteSpace(value.FilterValue))
continue;

string filterString = GetFilterString(value);
if (!string.IsNullOrWhiteSpace(filterString))
Expand Down
2 changes: 1 addition & 1 deletion GridShared/GridShared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
<LangVersion>11.0</LangVersion>
<Version>6.0.0</Version>
<Version>6.0.6</Version>
<Title>GridShared</Title>
<Description>Support library for GridBlazor and GridMvcCore component libraries</Description>
<Summary>Support library for GridBlazor and GridMvcCore component libraries</Summary>
Expand Down

0 comments on commit edd0b83

Please sign in to comment.