diff --git a/vue3/src/components/display/Instructions.vue b/vue3/src/components/display/Instructions.vue
index bd80db69a..d4ef7414d 100644
--- a/vue3/src/components/display/Instructions.vue
+++ b/vue3/src/components/display/Instructions.vue
@@ -1,6 +1,6 @@
-
-
+
+
diff --git a/vue3/src/components/inputs/GlobalSearchDialog.vue b/vue3/src/components/inputs/GlobalSearchDialog.vue
index c29799ded..26618cfcf 100644
--- a/vue3/src/components/inputs/GlobalSearchDialog.vue
+++ b/vue3/src/components/inputs/GlobalSearchDialog.vue
@@ -51,6 +51,7 @@
+ {{ $t('Advanced') }}
{{ $t('Close') }}
diff --git a/vue3/vite.config.ts b/vue3/vite.config.ts
index 14e628bbd..1b4eee1ad 100644
--- a/vue3/vite.config.ts
+++ b/vue3/vite.config.ts
@@ -17,7 +17,8 @@ export default defineConfig({
],
resolve: {
alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url))
+ '@': fileURLToPath(new URL('./src', import.meta.url)),
+ vue: fileURLToPath(new URL("./node_modules/vue/dist/vue.esm-bundler.js", import.meta.url)),
},
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue',],
},