Skip to content

Commit

Permalink
MudTable: add QuickColumns as illegal parameter (MudBlazor#8930)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScarletKuro authored May 9, 2024
1 parent d4b477e commit a7d9977
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/MudBlazor/Base/MudComponentBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,15 @@ protected void DetectIllegalRazorParametersV7()
break;
}
}
else if (MatchTypes(typeof(MudTable<>)))
{
switch (parameter)
{
case "QuickColumns":
NotifyIllegalParameter(parameter);
break;
}
}
else
{
switch (parameter)
Expand Down

0 comments on commit a7d9977

Please sign in to comment.