Skip to content

Commit c4ca46c

Browse files
authored
Merge pull request #3824 from SolidProgramming/issue_3812
fix(UI): Interface overview publication state icon broken
2 parents 550ac80 + 5285d8c commit c4ca46c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roles/ui/files/FWO.UI/Shared/ConnectionTable.razor

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@
6767
{
6868
<Column TableItem="ModellingConnection" Title="@(userConfig.GetText("published"))" Field="@(x => x.IsPublished)" Sortable="true" Filterable="true">
6969
<Template>
70-
@(context.IsInterface ? context.IsPublished.ShowAsHtml() : "")
70+
@if(context.IsInterface)
71+
{
72+
@context.IsPublished.ShowAsHtml()
73+
}
7174
</Template>
7275
</Column>
7376
}
@@ -182,7 +185,7 @@
182185
[Parameter]
183186
public SelectionType SelectionType { get; set; } = SelectionType.Single;
184187

185-
[Parameter]
188+
[Parameter]
186189
public EventCallback<int> PageSizeCallback { get; set; }
187190

188191
[Parameter]

0 commit comments

Comments
 (0)