@@ -141,15 +141,15 @@ <h2>Platform-specific Information of the App Deployer</h2>
141
141
142
142
< table class ="table table-hover ">
143
143
< tbody >
144
- < tr *ngIf ="!isEmpty(dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo) ">
145
- < ng-template ngFor let-item
146
- [ngForOf] =" dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo | keyvalues " >
144
+ < ng-template *ngIf ="!isEmpty(dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo) "
145
+ ngFor let-item [ngForOf] =" dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo | keyvalues " >
146
+ < tr >
147
147
< td class ="col-xs-6 "> {{item.key}}</ td > < td > {{item.value}}</ td >
148
- </ ng-template >
149
- </ tr >
150
- < tr *ngIf ="isEmpty(dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo) ">
151
- < td class ="col-xs-12 text-center " colspan ="2 "> No platform-specific app deployer information available.</ td >
152
- </ tr >
148
+ </ tr >
149
+ </ ng-template >
150
+ < tr *ngIf ="isEmpty(dataflowVersionInfo.runtimeEnvironment.appDeployer.platformSpecificInfo) ">
151
+ < td class ="col-xs-12 text-center " colspan ="2 "> No platform-specific app deployer information available.</ td >
152
+ </ tr >
153
153
</ tbody >
154
154
</ table >
155
155
@@ -197,15 +197,21 @@ <h2>Platform-specific Information of the Task Launcher</h2>
197
197
<!--<tr *ngIf="!isEmpty(dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo)" **ngFor="(key, value) in dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo">
198
198
<td class="col-xs-6">{{key}}</td><td>{{value}}</td>
199
199
</tr>-->
200
+ < ng-template *ngIf ="!isEmpty(dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo) "
201
+ ngFor let-item [ngForOf] ="dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo | keyvalues ">
202
+ < tr >
203
+ < td class ="col-xs-6 "> {{item.key}}</ td > < td > {{item.value}}</ td >
204
+ </ tr >
205
+ </ ng-template >
200
206
< tr *ngIf ="isEmpty(dataflowVersionInfo.runtimeEnvironment.taskLauncher.platformSpecificInfo) ">
201
207
< td colspan ="2 " class ="col-xs-6 text-center "> No platform-specific task launcher information available.</ td >
202
208
</ tr >
203
209
</ tbody >
204
210
</ table >
205
211
206
212
< div class ="row ">
207
- < div class ="col-md-6 text-right "> < button id ="back-button " type ="button " class ="btn btn-default " (click) ="goBack() "> < span class ="glyphicon glyphicon-arrow-left "> </ span > Back</ button > </ div >
208
- < div class ="col-md-6 text-left "> < button id ="back-button "
213
+ < div class ="col-md-12 text-right "> < button id ="back-button " type ="button " class ="btn btn-default " (click) ="goBack() "> < span class ="glyphicon glyphicon-arrow-left "> </ span > Back</ button > </ div >
214
+ < div class ="col-md-12 text-left "> < button id ="back-button "
209
215
[ngxClipboard] [cbContent] ="dataflowVersionInfo | json " (cbOnSuccess) ="onCopyToClipboardSuccess($event); "
210
216
type ="button " class ="btn btn-default "> < span class ="glyphicon glyphicon-copy "> </ span > Copy Details to Clipboard</ button > </ div >
211
217
</ div >
0 commit comments