Skip to content

Commit 509ba52

Browse files
authored
Fixing #47857 (#47886)
1 parent b07544b commit 509ba52

File tree

1 file changed

+1
-1
lines changed
  • src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/Columns

1 file changed

+1
-1
lines changed

src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/Columns/ColumnBase.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
else
1919
{
20-
@if (ColumnOptions is not null && (Align != Align.Right || Align != Align.End))
20+
@if (ColumnOptions is not null && (Align != Align.Right && Align != Align.End))
2121
{
2222
<button class="col-options-button" @onclick="@(() => Grid.ShowColumnOptionsAsync(this))"></button>
2323
}

0 commit comments

Comments
 (0)