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