We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 550ac80 + 5285d8c commit c4ca46cCopy full SHA for c4ca46c
roles/ui/files/FWO.UI/Shared/ConnectionTable.razor
@@ -67,7 +67,10 @@
67
{
68
<Column TableItem="ModellingConnection" Title="@(userConfig.GetText("published"))" Field="@(x => x.IsPublished)" Sortable="true" Filterable="true">
69
<Template>
70
- @(context.IsInterface ? context.IsPublished.ShowAsHtml() : "")
+ @if(context.IsInterface)
71
+ {
72
+ @context.IsPublished.ShowAsHtml()
73
+ }
74
</Template>
75
</Column>
76
}
@@ -182,7 +185,7 @@
182
185
[Parameter]
183
186
public SelectionType SelectionType { get; set; } = SelectionType.Single;
184
187
- [Parameter]
188
+ [Parameter]
189
public EventCallback<int> PageSizeCallback { get; set; }
190
191
0 commit comments