Skip to content
Snippets Groups Projects

restore capability and workflow

Merged Charlotte Hausman requested to merge Restore_Capability into main
All threads resolved!
Files
16
<div id="files-container" class="container-fluid rounded-top rounded-3 p-3">
<div *ngIf="capabilityVersion.files.length > 0; else noFilesMessage">
<div class="row my-2" *ngFor="let file of capabilityVersion.files">
<div class="col">
<span class="rounded-pill px-2 py-1 filename">{{ file.filename }}</span>
</div>
</div>
</div>
</div>
<ng-template #noFilesMessage> <em>No files exist for this request.</em> </ng-template>
Loading