diff options
Diffstat (limited to 'frontend/src/app/Shared.ts')
-rw-r--r-- | frontend/src/app/Shared.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/frontend/src/app/Shared.ts b/frontend/src/app/Shared.ts index a069ff8b..7be29cbf 100644 --- a/frontend/src/app/Shared.ts +++ b/frontend/src/app/Shared.ts @@ -15,12 +15,10 @@ class Shared { openDialog(title: string, message: string): void { - console.log("USAO U OPEN DIALOG 1"); if (this.dialog) { - console.log("USAO U OPEN DIALOG 2"); const dialogRef = this.dialog.open(AlertDialogComponent, { - //width: '250px', + width: '350px', data: { title: title, message: message } }); dialogRef.afterClosed().subscribe(res => { |