summaryrefslogtreecommitdiffstats
path: root/public/src/app/error-dialog/error-dialog.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'public/src/app/error-dialog/error-dialog.component.ts')
-rw-r--r--public/src/app/error-dialog/error-dialog.component.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/public/src/app/error-dialog/error-dialog.component.ts b/public/src/app/error-dialog/error-dialog.component.ts
index 3e7bfe0..aa4b693 100644
--- a/public/src/app/error-dialog/error-dialog.component.ts
+++ b/public/src/app/error-dialog/error-dialog.component.ts
@@ -1,4 +1,4 @@
-import { Component, OnInit } from '@angular/core';
+import { Component } from '@angular/core';
import { Store } from '../store/store';
@Component({
@@ -6,11 +6,9 @@ import { Store } from '../store/store';
templateUrl: './error-dialog.component.html',
styleUrls: ['./error-dialog.component.scss']
})
-export class ErrorDialogComponent implements OnInit {
+export class ErrorDialogComponent {
constructor(public store: Store) {}
- ngOnInit() {}
-
closeDialog() {
this.store.displayErrorDialog = false;
}