summaryrefslogtreecommitdiffstats
path: root/public/src/app/error-dialog/error-dialog.component.ts
blob: 3e7bfe06ba1ea6fcb547170717a8374546cdd616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Component, OnInit } from '@angular/core';
import { Store } from '../store/store';

@Component({
  selector: 'app-error-dialog',
  templateUrl: './error-dialog.component.html',
  styleUrls: ['./error-dialog.component.scss']
})
export class ErrorDialogComponent implements OnInit {
  constructor(public store: Store) {}

  ngOnInit() {}

  closeDialog() {
    this.store.displayErrorDialog = false;
  }
}