member_webapp/@overflow/probe/component/probe-detail.component.html

17 lines
960 B
HTML
Raw Normal View History

2018-05-31 09:45:40 +00:00
<of-error-message [error]="error$ | async" [closable]="false"></of-error-message>
<of-block-progressbar [target]="content" [pending]="pending$ | async"></of-block-progressbar>
2018-05-26 09:08:40 +00:00
2018-06-04 08:25:29 +00:00
<p-panel *ngIf="probeHost" #content [showHeader]="false" class="block-panel">
<of-probe-general [probe]="probeHost.probe" (modified)="modifiedGeneral($event)"></of-probe-general>
2018-06-05 15:51:49 +00:00
<of-probe-host [infraHost]="probeHost.infraHost"></of-probe-host>
2018-05-30 09:16:07 +00:00
2018-05-26 09:08:40 +00:00
<div class="ui-g" dir="rtl">
2018-05-26 09:59:57 +00:00
<button class="ui-button-danger ui-button-width-fit" [disabled]="true" type="button" label="Remove this Probe" icon="ui-icon-close" pButton
2018-06-04 08:25:29 +00:00
(click)="remove(probeHost)"></button>
2018-05-31 09:45:40 +00:00
<button class="ui-button-width-fit" type="button" label="Discovery" icon="ui-icon-search" pButton (click)="discovery.emit(probeHost.id)"></button>
2018-05-26 09:08:40 +00:00
</div>
</p-panel>
2018-05-25 09:18:06 +00:00
<!-- <p-confirmDialog header="Confirmation" icon="fa ui-icon-warning" width="425"></p-confirmDialog>
<p-growl [(value)]="msgs"></p-growl> -->