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 fc99279 + eaf1804 commit d0a8cf4Copy full SHA for d0a8cf4
roles/ui/files/FWO.UI/Shared/ConnectionTable.razor
@@ -67,9 +67,9 @@
67
{
68
<Column TableItem="ModellingConnection" Title="@(userConfig.GetText("published"))" Field="@(x => x.IsPublished)" Sortable="true" Filterable="true">
69
<Template>
70
- @if (context.IsInterface)
+ @if(context.IsInterface)
71
72
- context.IsPublished.ShowAsHtml();
+ @context.IsPublished.ShowAsHtml()
73
}
74
</Template>
75
</Column>
@@ -185,7 +185,7 @@
185
[Parameter]
186
public SelectionType SelectionType { get; set; } = SelectionType.Single;
187
188
- [Parameter]
+ [Parameter]
189
public EventCallback<int> PageSizeCallback { get; set; }
190
191
0 commit comments