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.

25 lines
514B

  1. import { Component } from '@angular/core';
  2. import { MatDialogRef } from '@angular/material/dialog';
  3. @Component({
  4. selector: 'app-confirm-dialog',
  5. templateUrl: './confirm-dialog.component.html',
  6. styleUrls: ['./confirm-dialog.component.scss'],
  7. })
  8. export class ConfirmDialogComponent {
  9. constructor(public dialogRef: MatDialogRef<ConfirmDialogComponent>) {}
  10. data = [
  11. {
  12. name: 'FIRE ALARM',
  13. ignore: false,
  14. },
  15. {
  16. name: 'FENCE ALARM',
  17. ignore: false,
  18. },
  19. ];
  20. }