refactor(dashboard): disable autoFocus in dialog configurations
This commit is contained in:
parent
1459290fed
commit
b0744f94ad
1 changed files with 2 additions and 0 deletions
|
@ -54,6 +54,7 @@ export class DashboardComponent {
|
|||
description:
|
||||
'Are you sure that you want to open ' + link.link + ' now?',
|
||||
},
|
||||
autoFocus: false,
|
||||
})
|
||||
.afterClosed()
|
||||
.subscribe((accepted: Boolean) => {
|
||||
|
@ -83,6 +84,7 @@ export class DashboardComponent {
|
|||
description:
|
||||
'Are you sure that you want to delete ' + link.name + '?',
|
||||
},
|
||||
autoFocus: false,
|
||||
})
|
||||
.afterClosed()
|
||||
.subscribe((accepted: boolean) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue