From e47e139414738bdd20519915964193c7fe104bcc Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Thu, 30 Oct 2025 14:31:04 +0100 Subject: [PATCH 1/2] fix: Disable note textarea during submission --- src/components/Notes.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Notes.vue b/src/components/Notes.vue index 0659424..0c4e7e3 100644 --- a/src/components/Notes.vue +++ b/src/components/Notes.vue @@ -42,6 +42,7 @@
@@ -45,7 +45,7 @@ type="button" class="button--smaller" @click="setFillModeToText" - :disabled="form.inProgress() ? 'true' : null" + :disabled="form.inProgress()" > {{ t('collection.new') }} @@ -57,7 +57,7 @@ v-model="newCollectionId" id="collection-select" ref="collection-select" - :disabled="form.inProgress() ? 'true' : null" + :disabled="form.inProgress()" >
-
diff --git a/src/screens/LoginScreen.vue b/src/screens/LoginScreen.vue index f28bab6..4d65411 100644 --- a/src/screens/LoginScreen.vue +++ b/src/screens/LoginScreen.vue @@ -100,7 +100,7 @@
-
diff --git a/src/screens/SettingsScreen.vue b/src/screens/SettingsScreen.vue index a030b1f..0d8f539 100644 --- a/src/screens/SettingsScreen.vue +++ b/src/screens/SettingsScreen.vue @@ -56,7 +56,7 @@
-