2020-12-11 14:30:59 +01:00
|
|
|
<div class="modal-header">
|
|
|
|
|
<h4 class="modal-title" id="modal-basic-title">{{title}}</h4>
|
2022-02-20 01:43:31 +01:00
|
|
|
<button type="button" class="btn-close" aria-label="Close" (click)="cancelClicked()">
|
2020-12-11 14:30:59 +01:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
|
2023-09-14 14:03:28 -07:00
|
|
|
<pngx-input-select [items]="objects" [title]="message" [(ngModel)]="selected"></pngx-input-select>
|
2020-12-11 14:30:59 +01:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
2020-12-28 15:39:53 +01:00
|
|
|
<button type="button" class="btn btn-outline-dark" (click)="cancelClicked()" i18n>Cancel</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" (click)="selectClicked.emit(selected)" i18n>Select</button>
|
2021-06-13 10:48:46 -04:00
|
|
|
</div>
|