diff --git a/dashboard/src/components/FolderView.vue b/dashboard/src/components/FolderView.vue index 9ecd4f945..f795c5462 100644 --- a/dashboard/src/components/FolderView.vue +++ b/dashboard/src/components/FolderView.vue @@ -108,6 +108,7 @@ async function onNewFile() { const newFileName = await inputDialog.value.prompt({ message: t('filemanager.newFileDialog.title'), value: '', + required: true, confirmStyle: 'success', confirmLabel: t('filemanager.newFileDialog.create'), rejectLabel: t('main.dialog.cancel'), @@ -124,6 +125,7 @@ async function onNewFolder() { const newFolderName = await inputDialog.value.prompt({ message: t('filemanager.newDirectoryDialog.title'), value: '', + required: true, confirmStyle: 'success', confirmLabel: t('filemanager.newFileDialog.create'), rejectLabel: t('main.dialog.cancel'),