summaryrefslogtreecommitdiffstats
path: root/public/src/app/error-dialog/error-dialog.component.ts
blob: aa4b6936ae9dddadc64e6778fb7c2573e4b33b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component } 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 {
  constructor(public store: Store) {}

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