You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
591B

  1. <h5 mat-dialog-title >CONFIRM TO IGNORE THE WARNING</h5>
  2. <mat-dialog-content style="padding-bottom: 4px" *ngIf="data.length">
  3. <div *ngFor="let item of data">
  4. <mat-checkbox [(ngModel)]="item.value"
  5. (ngModelChange)="submitChange(item)"
  6. [disabled]="isConnected && item.value"
  7. name="sensor">
  8. {{ (item.key == 'status1' ? 'Fire Alarm' : 'Fence Alarm') }}
  9. </mat-checkbox>
  10. </div>
  11. </mat-dialog-content>
  12. <mat-dialog-actions align="end">
  13. <button mat-button mat-dialog-close cdkFocusInitial>Close</button>
  14. </mat-dialog-actions>