Skip to content

Commit

Permalink
Fixed row un-selection
Browse files Browse the repository at this point in the history
  • Loading branch information
stsrki committed Nov 13, 2020
1 parent f731973 commit ebcd4b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Source/Extensions/Blazorise.DataGrid/_DataGridRow.razor.cs
Expand Up @@ -57,8 +57,10 @@ protected internal async Task HandleClick( BLMouseEventArgs eventArgs )
{
await Selected.InvokeAsync( default );
}

await Selected.InvokeAsync( Item );
else
{
await Selected.InvokeAsync( Item );
}
}

protected internal Task HandleDoubleClick( BLMouseEventArgs eventArgs )
Expand Down

0 comments on commit ebcd4b3

Please sign in to comment.