No more modal for dialogs

This commit is contained in:
Johannes Zellner
2025-07-15 18:51:39 +02:00
parent 2f4d89f32a
commit 4a537dde1a
9 changed files with 8 additions and 22 deletions
+1 -2
View File
@@ -51,7 +51,6 @@ async function onDownload() {
confirmStyle: 'success',
confirmLabel: t('terminal.download.download'),
rejectLabel: t('main.dialog.cancel'),
modal: false
});
if (!downloadFileName) return;
@@ -287,7 +286,7 @@ onMounted(async () => {
<template>
<MainLayout :gap="false">
<template #dialogs>
<Dialog ref="fatalErrorDialog" modal title="Error">
<Dialog ref="fatalErrorDialog" title="Error">
<p>{{ fatalError }}</p>
</Dialog>