|
|
@@ -7,7 +7,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="row mb-2">
|
|
|
- <label class="col-sm-3 form-check-label" [for]="'Active_' + serviceCheck.id"> Active </label>
|
|
|
+ <label class="col-sm-3 form-check-label" [for]="'Active_' + serviceCheck.id">Active</label>
|
|
|
<div class="col-sm-9">
|
|
|
<input class="form-check-input" formControlName="active" type="checkbox" value="" [id]="'Active_' + serviceCheck.id" />
|
|
|
</div>
|
|
|
@@ -30,6 +30,18 @@
|
|
|
<input type="text" formControlName="url" class="form-control" [id]="'Url_' + serviceCheck.id" />
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="row mb-2">
|
|
|
+ <label [for]="'Notify_' + serviceCheck.id" class="col-sm-3 col-form-label">Notify</label>
|
|
|
+ <div class="col-sm-9">
|
|
|
+ <input type="checkbox" formControlName="notify" class="form-check-input" [id]="'Notify_' + serviceCheck.id" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row mb-2">
|
|
|
+ <label [for]="'NotifyThreshold_' + serviceCheck.id" class="col-sm-3 col-form-label">Notify Threshold</label>
|
|
|
+ <div class="col-sm-9">
|
|
|
+ <input type="text" formControlName="notifyThreshold" class="form-control" [id]="'NotifyThreshold_' + serviceCheck.id" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="col-5 h-100 overflow-auto">
|
|
|
<ul formArrayName="checks" class="list-group">
|