github.com/in4it/ecs-deploy@v0.0.42-0.20240508120354-ed77ff16df25/webapp/src/app/service-detail/deploy.component.html (about)

     1  <ng-template #deploy let-c="close" let-d="dismiss">
     2    <div class="modal-header">
     3      <h4 class="modal-title">Deploy {{serviceName}}</h4>
     4      <button type="button" class="close" aria-label="Close" (click)="d('Cross click')">
     5        <span aria-hidden="true">&times;</span>
     6      </button>
     7    </div>
     8    <div class="modal-body">
     9      <span *ngIf="loading" class="sr-only">Loading...</span>
    10      <div *ngIf="!loading">
    11        Are you sure you want to deploy <strong>{{versionMap[selectedVersion].tag}}</strong>, which corresponds with the <strong>{{serviceName}}</strong> deployment of <strong>{{selectedVersion}}</strong>?
    12      </div>
    13    </div>
    14    <div class="modal-footer">
    15      <button type="button" class="btn btn-outline-dark" (click)="c('Close click')">Cancel</button>
    16      <button type="button" class="btn btn-outline-dark btn-primary" (click)="c('Deploy')">Deploy</button>
    17    </div>
    18  </ng-template>