Skip to content

Commit

Permalink
MudDataGrid: Fix HierarchyColumn button not clickable on glyph (#7706)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoarm93 authored Oct 29, 2023
1 parent 2fcb5f5 commit bbbd1cd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/MudBlazor/Components/DataGrid/HierarchyColumn.razor
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
<TemplateColumn T="T" Tag="@("hierarchy-column")" Sortable="false" Resizable="false" ShowColumnOptions="false" HeaderStyle="width:0%"
Filterable="false" IsEditable="false">
<CellTemplate>
<label class="ma-n3">
<MudIconButton
<MudIconButton
Class="ma-n3 pa-1"
Icon="@(context.OpenHierarchies.Contains(context.Item) ? OpenIcon : ClosedIcon)"
OnClick="context.Actions.ToggleHierarchyVisibilityForItemAsync"
Size="@IconSize"
Disabled="ButtonDisabledFunc.Invoke(context.Item)"/>
</label>
</CellTemplate>
</TemplateColumn>

Expand Down

0 comments on commit bbbd1cd

Please # to comment.