Skip to content

Commit

Permalink
Fix for using row checkboxes after header checkbox has been pressed (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavnavar committed May 24, 2022
1 parent 934b438 commit 595aa2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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>8.0</LangVersion>
<GenerateEmbeddedFilesManifest>True</GenerateEmbeddedFilesManifest>
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems>
<Version>3.2.8</Version>
<Version>3.2.9</Version>
<Title>GridBlazor</Title>
<Description>Grid components for Blazor</Description>
<Summary>Grid components for Blazor</Summary>
Expand Down
3 changes: 1 addition & 2 deletions GridBlazor/Pages/GridHeaderComponent.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
@ondragenter="HandleDragEnter"
@ondragleave="HandleDragLeave"
@ondrop="HandleDrop"
ondragover="event.preventDefault();"
>
ondragover="event.preventDefault();">
<div class="grid-header-group">
@if (GridComponent.Grid.RearrangeColumnEnabled
&& !string.IsNullOrEmpty(_dropClass))
Expand Down
1 change: 1 addition & 0 deletions GridBlazor/Pages/GridHeaderComponent.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ private async Task RowCheckboxChanged(CheckboxEventArgs<T> e)
}
else
{
_allChecked = null;
_showAllChecked = false;
}
}
Expand Down

0 comments on commit 595aa2f

Please sign in to comment.