File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/Columns Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 19
19
{
20
20
@if (ColumnOptions is not null && (Align != Align .Right && Align != Align .End ))
21
21
{
22
- <button class =" col-options-button" @onclick =" @(() => Grid.ShowColumnOptionsAsync(this))" ></button >
22
+ <button class =" col-options-button" type = " button " @onclick =" @(() => Grid.ShowColumnOptionsAsync(this))" ></button >
23
23
}
24
24
25
25
if (Sortable .HasValue ? Sortable .Value : IsSortableByDefault ())
26
26
{
27
- < button class = " col-title" @onclick = " @(() => Grid.SortByColumnAsync(this))" >
27
+ < button class = " col-title" type = " button " @onclick = " @(() => Grid.SortByColumnAsync(this))" >
28
28
< div class = " col-title-text" > @Title < / div >
29
29
< div class = " sort-indicator" aria - hidden = " true" >< / div >
30
30
< / button >
38
38
39
39
@if (ColumnOptions is not null && (Align == Align .Right || Align == Align .End ))
40
40
{
41
- <button class =" col-options-button" @onclick =" @(() => Grid.ShowColumnOptionsAsync(this))" ></button >
41
+ <button class =" col-options-button" type = " button " @onclick =" @(() => Grid.ShowColumnOptionsAsync(this))" ></button >
42
42
}
43
43
}
44
44
}
You can’t perform that action at this time.
0 commit comments