operations/single-operation-details/single-operation-modal.component.ts
selector | c8y-single-operation-modal |
templateUrl | ./single-operation-modal.component.html |
Properties |
|
Inputs |
constructor(modalRef: BsModalRef)
|
||||||
Parameters :
|
collapsed
|
Type :
Default value : |
operation
|
Type : |
readOnly
|
Type :
Default value : |
Public modalRef |
modalRef:
|
Type : BsModalRef
|
<div class="viewport-modal">
<div class="modal-header">
<h3>{{ 'Single operation details' | translate }}</h3>
</div>
<div class="modal-inner-scroll">
<c8y-single-operation-list-item
[operation]="operation"
[collapsed]="collapsed"
[readOnly]="readOnly"
></c8y-single-operation-list-item>
</div>
<div class="modal-footer">
<button title="{{ 'Close' | translate }}" class="btn btn-default" (click)="modalRef.hide()">
{{ 'Close' | translate }}
</button>
</div>
</div>