Skip to content

Commit b3b8eae

Browse files
committed
fix #3812 in develop
1 parent 8124a29 commit b3b8eae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
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
}

0 commit comments

Comments
 (0)