Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit f008380

Browse files
committed
Resolves #592 - About-details labels to reflect the server mode
1 parent fb554bb commit f008380

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ui/app/lib/
66
ui/app/styles/main.css
77
ui/app/styles/main.css.map
88
ui/.tmp
9+
ui/documentation/
10+
ui/package-lock.json
911
src/main/resources/public/dashboard
1012
target/
1113
.classpath

ui/src/app/about/about-details.component.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ <h2>Version Information</h2>
121121
</tbody>
122122
</table>
123123

124-
<h2>Runtime Environment - App Deployer</h2>
124+
<h2 *ngIf="dataflowVersionInfo.featureInfo.skipperEnabled">Runtime Environment - Skipper Deployer</h2>
125+
<h2 *ngIf="!dataflowVersionInfo.featureInfo.skipperEnabled">Runtime Environment - App Deployer</h2>
125126

126127
<table class="table table-hover" id="appDeployerTable">
127128
<tbody>
@@ -158,7 +159,8 @@ <h2>Runtime Environment - App Deployer</h2>
158159
</tbody>
159160
</table>
160161

161-
<h2>Platform-specific Information of the App Deployer</h2>
162+
<h2 *ngIf="dataflowVersionInfo.featureInfo.skipperEnabled">Platform-specific Information of the Skipper Deployer</h2>
163+
<h2 *ngIf="!dataflowVersionInfo.featureInfo.skipperEnabled">Platform-specific Information of the App Deployer</h2>
162164

163165
<table class="table table-hover" id="appDeployerPlatformSpecificTable">
164166
<tbody>

0 commit comments

Comments
 (0)