@@ -7,10 +7,10 @@ <h2>Data Flow Server Implementation</h2>
7
7
< table class ="table table-hover " id ="dataFlowVersionTable ">
8
8
< tbody >
9
9
< tr >
10
- < td class ="col-xs-6 "> Name</ td > < td > {{dataflowVersionInfo.versionInfo.implementation.name}}</ td >
10
+ < td class ="col-xs-6 "> Name</ td > < td > {{ dataflowVersionInfo.versionInfo.implementation.name }}</ td >
11
11
</ tr >
12
12
< tr >
13
- < td class ="col-xs-6 "> Version</ td > < td > {{dataflowVersionInfo.versionInfo.implementation.version}}</ td >
13
+ < td class ="col-xs-6 "> Version</ td > < td > {{ dataflowVersionInfo.versionInfo.implementation.version }}</ td >
14
14
</ tr >
15
15
</ tbody >
16
16
</ table >
@@ -84,11 +84,11 @@ <h2>Security Information</h2>
84
84
</ tr >
85
85
< tr >
86
86
< td class ="col-xs-6 "> Username</ td >
87
- < td id ="username "> {{dataflowVersionInfo.securityInfo.username || 'N/A'}}</ td >
87
+ < td id ="username "> {{ dataflowVersionInfo.securityInfo.username || 'N/A' }}</ td >
88
88
</ tr >
89
89
< tr >
90
90
< td class ="col-xs-6 "> Roles</ td >
91
- < td id ="roles "> {{dataflowVersionInfo.securityInfo.roles}}</ td >
91
+ < td id ="roles "> {{ dataflowVersionInfo.securityInfo.roles }}</ td >
92
92
</ tr >
93
93
</ tbody >
94
94
</ table >
@@ -99,24 +99,24 @@ <h2>Version Information</h2>
99
99
< tbody >
100
100
< tr >
101
101
< td class ="col-xs-6 "> Implementation Version</ td >
102
- < td > {{dataflowVersionInfo.versionInfo.implementation.version}} ({{dataflowVersionInfo.versionInfo.implementation.name}})</ td >
102
+ < td > {{ dataflowVersionInfo.versionInfo.implementation.version }} ({{ dataflowVersionInfo.versionInfo.implementation.name }})</ td >
103
103
</ tr >
104
104
< tr >
105
- < td class ="col-xs-6 "> Core</ td > < td > {{dataflowVersionInfo.versionInfo.core.version}} ({{dataflowVersionInfo.versionInfo.core.name}})</ td >
105
+ < td class ="col-xs-6 "> Core</ td > < td > {{ dataflowVersionInfo.versionInfo.core.version }} ({{ dataflowVersionInfo.versionInfo.core.name }})</ td >
106
106
</ tr >
107
107
< tr >
108
- < td class ="col-xs-6 "> Dashboard</ td > < td > {{dataflowVersionInfo.versionInfo.dashboard.version}} ({{dataflowVersionInfo.versionInfo.dashboard.name}})</ td >
108
+ < td class ="col-xs-6 "> Dashboard</ td > < td > {{ dataflowVersionInfo.versionInfo.dashboard.version }} ({{ dataflowVersionInfo.versionInfo.dashboard.name }})</ td >
109
109
</ tr >
110
110
< tr >
111
- < td class ="col-xs-6 "> Shell</ td > < td > {{dataflowVersionInfo.versionInfo.shell.version}} ({{dataflowVersionInfo.versionInfo.shell.name}})</ td >
111
+ < td class ="col-xs-6 "> Shell</ td > < td > {{ dataflowVersionInfo.versionInfo.shell.version }} ({{ dataflowVersionInfo.versionInfo.shell.name }})</ td >
112
112
</ tr >
113
113
< tr *ngIf ="dataflowVersionInfo.versionInfo.shell.checksumSha1 ">
114
114
< td class ="col-xs-6 "> Shell Checksum Sha1</ td >
115
- < td > {{dataflowVersionInfo.versionInfo.shell.checksumSha1}}</ td >
115
+ < td > {{ dataflowVersionInfo.versionInfo.shell.checksumSha1 }}</ td >
116
116
</ tr >
117
117
< tr *ngIf ="dataflowVersionInfo.versionInfo.shell.checksumSha256 ">
118
118
< td class ="col-xs-6 "> Shell Checksum Sha256</ td >
119
- < td > {{dataflowVersionInfo.versionInfo.shell.checksumSha256}}</ td >
119
+ < td > {{ dataflowVersionInfo.versionInfo.shell.checksumSha256 }}</ td >
120
120
</ tr >
121
121
</ tbody >
122
122
</ table >
@@ -127,34 +127,34 @@ <h2 *ngIf="!dataflowVersionInfo.featureInfo.skipperEnabled">Runtime Environment
127
127
< table class ="table table-hover " id ="appDeployerTable ">
128
128
< tbody >
129
129
< tr >
130
- < td class ="col-xs-6 "> Implementation Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.deployerImplementationVersion}}</ td >
130
+ < td class ="col-xs-6 "> Implementation Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.deployerImplementationVersion }}</ td >
131
131
</ tr >
132
132
< tr >
133
- < td class ="col-xs-6 "> Name</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.deployerName}}</ td >
133
+ < td class ="col-xs-6 "> Name</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.deployerName }}</ td >
134
134
</ tr >
135
135
< tr >
136
- < td class ="col-xs-6 "> Spi Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.deployerSpiVersion}}</ td >
136
+ < td class ="col-xs-6 "> Spi Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.deployerSpiVersion }}</ td >
137
137
</ tr >
138
138
< tr >
139
- < td class ="col-xs-6 "> Java Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.javaVersion}}</ td >
139
+ < td class ="col-xs-6 "> Java Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.javaVersion }}</ td >
140
140
</ tr >
141
141
< tr >
142
- < td class ="col-xs-6 "> Platform Api Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.platformApiVersion}}</ td >
142
+ < td class ="col-xs-6 "> Platform Api Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.platformApiVersion }}</ td >
143
143
</ tr >
144
144
< tr >
145
- < td class ="col-xs-6 "> Platform Client Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.platformClientVersion}}</ td >
145
+ < td class ="col-xs-6 "> Platform Client Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.platformClientVersion }}</ td >
146
146
</ tr >
147
147
< tr >
148
- < td class ="col-xs-6 "> Platform Host Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.platformHostVersion}}</ td >
148
+ < td class ="col-xs-6 "> Platform Host Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.platformHostVersion }}</ td >
149
149
</ tr >
150
150
< tr >
151
- < td class ="col-xs-6 "> Platform Type</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.platformType}}</ td >
151
+ < td class ="col-xs-6 "> Platform Type</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.platformType }}</ td >
152
152
</ tr >
153
153
< tr >
154
- < td class ="col-xs-6 "> Spring Boot Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.springBootVersion}}</ td >
154
+ < td class ="col-xs-6 "> Spring Boot Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.springBootVersion }}</ td >
155
155
</ tr >
156
156
< tr >
157
- < td class ="col-xs-6 "> Spring Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.appDeployer.springVersion}}</ td >
157
+ < td class ="col-xs-6 "> Spring Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.appDeployer.springVersion }}</ td >
158
158
</ tr >
159
159
</ tbody >
160
160
</ table >
@@ -167,7 +167,7 @@ <h2 *ngIf="!dataflowVersionInfo.featureInfo.skipperEnabled">Platform-specific In
167
167
< ng-template *ngIf ="dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo && dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo.size > 0 "
168
168
ngFor let-item [ngForOf] ="dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo | mapValuesPipe ">
169
169
< tr >
170
- < td class ="col-xs-6 "> {{item.key}}</ td > < td > {{item.value}}</ td >
170
+ < td class ="col-xs-6 "> {{ item.key }}</ td > < td > {{ item.value }}</ td >
171
171
</ tr >
172
172
</ ng-template >
173
173
< tr *ngIf ="!dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo || dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo.size == 0 ">
@@ -183,34 +183,34 @@ <h2>Runtime Environment - Task Launcher</h2>
183
183
< table class ="table table-hover " *ngIf ="!isEmpty(dataflowVersionInfo.runtimeEnvironment.taskLauncher) " id ="taskLauncherTable ">
184
184
< tbody >
185
185
< tr >
186
- < td class ="col-xs-6 "> Implementation Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.deployerImplementationVersion}}</ td >
186
+ < td class ="col-xs-6 "> Implementation Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.deployerImplementationVersion }}</ td >
187
187
</ tr >
188
188
< tr >
189
- < td class ="col-xs-6 "> Name</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.deployerName}}</ td >
189
+ < td class ="col-xs-6 "> Name</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.deployerName }}</ td >
190
190
</ tr >
191
191
< tr >
192
- < td class ="col-xs-6 "> Spi Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.deployerSpiVersion}}</ td >
192
+ < td class ="col-xs-6 "> Spi Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.deployerSpiVersion }}</ td >
193
193
</ tr >
194
194
< tr >
195
- < td class ="col-xs-6 "> Java Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.javaVersion}}</ td >
195
+ < td class ="col-xs-6 "> Java Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.javaVersion }}</ td >
196
196
</ tr >
197
197
< tr >
198
- < td class ="col-xs-6 "> Platform Api Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformApiVersion}}</ td >
198
+ < td class ="col-xs-6 "> Platform Api Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformApiVersion }}</ td >
199
199
</ tr >
200
200
< tr >
201
- < td class ="col-xs-6 "> Platform Client Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformClientVersion}}</ td >
201
+ < td class ="col-xs-6 "> Platform Client Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformClientVersion }}</ td >
202
202
</ tr >
203
203
< tr >
204
- < td class ="col-xs-6 "> Platform Host Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformHostVersion}}</ td >
204
+ < td class ="col-xs-6 "> Platform Host Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformHostVersion }}</ td >
205
205
</ tr >
206
206
< tr >
207
- < td class ="col-xs-6 "> Platform Type</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformType}}</ td >
207
+ < td class ="col-xs-6 "> Platform Type</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformType }}</ td >
208
208
</ tr >
209
209
< tr >
210
- < td class ="col-xs-6 "> Spring Boot Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.springBootVersion}}</ td >
210
+ < td class ="col-xs-6 "> Spring Boot Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.springBootVersion }}</ td >
211
211
</ tr >
212
212
< tr >
213
- < td class ="col-xs-6 "> Spring Version</ td > < td > {{dataflowVersionInfo.runtimeEnvironment.taskLauncher.springVersion}}</ td >
213
+ < td class ="col-xs-6 "> Spring Version</ td > < td > {{ dataflowVersionInfo.runtimeEnvironment.taskLauncher.springVersion }}</ td >
214
214
</ tr >
215
215
</ tbody >
216
216
</ table >
@@ -222,7 +222,7 @@ <h2>Platform-specific Information of the Task Launcher</h2>
222
222
< ng-template *ngIf ="dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo && dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo.size > 0 "
223
223
ngFor let-item [ngForOf] ="dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo | mapValuesPipe ">
224
224
< tr >
225
- < td class ="col-xs-6 "> {{item.key}}</ td > < td > {{item.value}}</ td >
225
+ < td class ="col-xs-6 "> {{ item.key }}</ td > < td > {{ item.value }}</ td >
226
226
</ tr >
227
227
</ ng-template >
228
228
< tr *ngIf ="!dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo || dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo.size == 0 ">
0 commit comments