diff options
author | Ittay Stern <ittay.stern@att.com> | 2020-01-16 13:30:34 +0200 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2020-01-16 15:24:14 +0200 |
commit | 59eaa5abcc93e8c215f673a6fda18845eb6e51b7 (patch) | |
tree | a5c78645c15bb8756305ed395044d63e4e98c74c /vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.html | |
parent | 874c62c8052147a3a3e0c3aed107f7128eefa351 (diff) |
Async MSO error visibility: let open "retry" from Audit-info
On the "audit info" modal (available on Instantiation Status page), show
a link navigating to read-only RETRY page with more audit info.
Issue-ID: VID-749
Change-Id: I070336059859668292af31c187a7672c68962832
Signed-off-by: Ittay Stern <ittay.stern@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 | 9 |
1 files changed, 8 insertions, 1 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 5145784e2..3dff92cdc 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 @@ -14,7 +14,14 @@ </div> </div> <div class="col-md-8 right-panel"> - <div class="row" *ngIf="showVidStatus"><span class="table-title">VID status</span></div> + <div class="row" *ngIf="showVidStatus"> + <div class="col-md-6 leftColumn"><span class="table-title">VID status</span></div> + <div class="col-md-6 rightColumn"><span *ngIf="showMoreAuditInfoLink"> + <a id="full_screen_link" target="_parent" title="Full-screen audit info" [href]="readOnlyRetryUrl()"> + <i class="fa fa-external-link"></i> + </a> + </span></div> + </div> <div class="row" *ngIf="showVidStatus"> <table id="service-instantiation-audit-info-vid" class="table table-bordered"> <thead class="thead-dark"> |