diff --git a/frontend/src/components/prompts/Prompts.vue b/frontend/src/components/prompts/Prompts.vue index 3bd80f99..937e6232 100644 --- a/frontend/src/components/prompts/Prompts.vue +++ b/frontend/src/components/prompts/Prompts.vue @@ -108,7 +108,9 @@ export default { return (matched && this.show) || null; }, showOverlay: function () { - return this.show !== null && this.show !== "search" && this.show !== "more"; + return ( + this.show !== null && this.show !== "search" && this.show !== "more" + ); }, }, methods: { diff --git a/frontend/src/components/prompts/UploadFiles.vue b/frontend/src/components/prompts/UploadFiles.vue index 9ef86eff..d0bf7cc3 100644 --- a/frontend/src/components/prompts/UploadFiles.vue +++ b/frontend/src/components/prompts/UploadFiles.vue @@ -15,7 +15,13 @@
{{ $t("files.multipleSelectionEnabled") }}
-