The NS/VNF package content will shown
* Clicking on the content will show the content of packages
Change-Id: Ib54437993915171f44acdbc1edb5ea475767afa8
Signed-off-by: Barath Kumar R <barath.r@tataelxsi.co.in>
diff --git a/src/app/packages/show-content/ShowContentComponent.html b/src/app/packages/show-content/ShowContentComponent.html
index dbb0935..a4c5139 100644
--- a/src/app/packages/show-content/ShowContentComponent.html
+++ b/src/app/packages/show-content/ShowContentComponent.html
@@ -23,22 +23,17 @@
</button>
</div>
<div class="modal-body">
- <table class="table table-bored show-content" *ngIf="contents else noData">
+ <table class="table table-sm table-hover table-layout-fixed mb-0" *ngIf="contents else noData">
<tr>
- <th># {{'FILES' | translate}} {{'NAME' | translate}}</th>
- <th>{{'ACTIONS' | translate }}</th>
+ <th>{{'NAME' | translate}}</th>
</tr>
<tr *ngFor="let data of contents">
- <td>- {{(data)?data:'-'}}</td>
- <td>
- <button class="btn btn-xs">
- <i class="far fa-folder-open icons"></i>
- </button>
- </td>
+ <td>{{(data)?data:'-'}}</td>
</tr>
</table>
<ng-template #noData>{{'NODATAERROR' | translate}}</ng-template>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" (click)="activeModal.close()">{{'CANCEL' | translate}}</button>
-</div>
\ No newline at end of file
+</div>
+<app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader>
\ No newline at end of file