diff options
author | Kruthi Bhat <krutbhat@att.com> | 2020-10-29 22:15:04 +0530 |
---|---|---|
committer | Kruthi Bhat <krutbhat@att.com> | 2020-10-29 22:15:13 +0530 |
commit | 5ecb6d93b05f1cecb95604b057a1894293a6b687 (patch) | |
tree | 3201e456c252897ede213fd43745342c613cba2e /vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html | |
parent | 08a553f12102f39dd2b643d63d59c07850de03aa (diff) |
VID-913 : Addition of Instance IDs in Audit Info screen
Change-Id: I7a440c6797f63588c68d490715272992e626424f
Issue-ID: VID-913
Signed-off-by: Kruthi Bhat <krutbhat@att.com>
Diffstat (limited to 'vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html')
-rw-r--r-- | vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html b/vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html index 874f13a01..0de1b88ae 100644 --- a/vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html +++ b/vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html @@ -11,7 +11,8 @@ <br> <span style="font-size: 16px;"> <!-- ServiceInstanceName(ServiceModelName/ServiceModelId) --> - <span title="Service Instance name">{{serviceInstanceName }}</span><span title="Service Model name"> ({{serviceModelName}}/</span> + <span title="Service Instance name">{{serviceInstanceName }} </span><span *ngIf= "serviceInstanceId" title="Service Instance ID"> | {{serviceInstanceId}}</span> + <span title="Service Model name"> ({{serviceModelName}}/</span> <span title="Service Model version">{{serviceModelVersion}})</span> </span> </div> @@ -38,7 +39,7 @@ <thead class="thead-dark row"> <tr class="row"> <th scope="col" class="request-id">Request ID</th> - <th *ngIf="isAlaCarte&&isALaCarteFlagOn" id="instanceName" class="col-md-2" scope="col" >Instance Name</th> + <th *ngIf="isAlaCarte&&isALaCarteFlagOn" id="instanceName" class="col-md-2" scope="col" >Instance Name | <br>Instance ID</th> <th>Model Type</th> <th>Request Type</th> <th>Start Time</th> @@ -49,11 +50,11 @@ </thead> <tbody> <tr class="row" *ngFor="let data of msoInfoData"> - <td id="msoRequestId" style="width: 22%"> + <td id="msoRequestId" class="col-md-2" style="width: 22%"> <custom-ellipsis [id]="data?.requestId" [value]="data?.requestId" [attr.data-tests-id]="'requestId'"></custom-ellipsis> </td> - <td *ngIf="isAlaCarte && isALaCarteFlagOn" class="msoInstanceName" style="width: 10%"> - <custom-ellipsis [id]="data?.instanceName" [value]="data?.instanceName"></custom-ellipsis> + <td id="msoInstanceName" *ngIf="isAlaCarte && isALaCarteFlagOn" class="msoInstanceName col-md-2" style="width: 10%"> + <custom-ellipsis [id]="data?.instanceId" [value]="data?.instanceColumn"></custom-ellipsis> </td> <td id="msoModelType" style="width: 7%"> <custom-ellipsis [value]="data?.modelType"></custom-ellipsis> |