Fix error dialog history

This commit is contained in:
Dmitry Lyzo 2021-10-03 21:51:06 +03:00
parent 2af0b91dad
commit 3567b9783d
4 changed files with 41 additions and 14 deletions

View file

@ -184,7 +184,9 @@ import '../../assets/css/scrollstyles.scss';
return dlg.getAttribute('data-history') === 'true';
}
export function open(dlg) {
export async function open(dlg) {
await appRouter.ready();
if (globalOnOpenCallback) {
globalOnOpenCallback(dlg);
}