Skip to content

Commit

Permalink
Merge pull request #2788 from SolidProgramming/Issue_2784
Browse files Browse the repository at this point in the history
Merge #2784 into develop
  • Loading branch information
tpurschke authored Jan 8, 2025
2 parents 7a36043 + 3d3bfd5 commit 7fc963a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions roles/ui/files/FWO.UI/Shared/ConnectionTable.razor
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@
@(context.App?.DisplayWithoutAppId(userConfig.GetText("common_service")))
</Template>
</Column>
}
<Column TableItem="ModellingConnection" Title="@(userConfig.GetText("ext_app_id"))" Field="@(x => x.App.ExtAppId)" Sortable="true" Filterable="true">
<Template>
@(context.App.ExtAppId)
</Template>
</Column>
<Column TableItem="ModellingConnection" Title="@(userConfig.GetText("ext_app_id"))" Field="@(x => x.App.ExtAppId)" Sortable="true" Filterable="true">
<Template>
@(context.App.ExtAppId)
</Template>
</Column>
}
<Column TableItem="ModellingConnection" Title="@(userConfig.GetText("name"))" Field="@(x => x.Name)" Sortable="true" Filterable="true">
<Template>
@((MarkupString)DisplayConditional(context, context.Name ?? ""))
Expand Down

0 comments on commit 7fc963a

Please sign in to comment.