Skip to content

Commit

Permalink
Don't show empty parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
stsrki committed Nov 25, 2024
1 parent b7d8d5d commit edfba60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/Blazorise.Docs/Components/DocsMethods.razor
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@if ( ShowParameters )
{
<TableRowCell Class="@docsMethodsItem.DefaultClassNames">
@if ( @docsMethodsItem.Parameters != null )
@if ( !string.IsNullOrWhiteSpace( docsMethodsItem.Parameters ) )
{
<Code>@docsMethodsItem.Parameters</Code>
}
Expand Down

0 comments on commit edfba60

Please sign in to comment.