bugfix: #272 if the dialog is already open, close it (#294)

This commit is contained in:
James Read
2024-04-27 00:02:17 +01:00
committed by GitHub
parent d6cb634824
commit ceb215a6dc

View File

@@ -75,6 +75,10 @@ export class ExecutionDialog {
this.executionTick()
}, 1000)
if (this.dlg.open) {
this.dlg.close()
}
this.dlg.showModal()
}