From 2b411053eded8e32fb2b1eddc6f36afbbd6c0f28 Mon Sep 17 00:00:00 2001 From: Paul Neubauer Date: Thu, 20 Apr 2023 10:33:17 +0200 Subject: [PATCH] Disable confirm button per default --- .../src/components/SideBar/Shares/Links/DetailsAndEdit.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/web-app-files/src/components/SideBar/Shares/Links/DetailsAndEdit.vue b/packages/web-app-files/src/components/SideBar/Shares/Links/DetailsAndEdit.vue index 2445824c821..5bf779a78ae 100644 --- a/packages/web-app-files/src/components/SideBar/Shares/Links/DetailsAndEdit.vue +++ b/packages/web-app-files/src/components/SideBar/Shares/Links/DetailsAndEdit.vue @@ -484,6 +484,7 @@ export default defineComponent({ cancelText: this.$gettext('Cancel'), confirmText: this.link.password ? this.$gettext('Apply') : this.$gettext('Set'), hasInput: true, + confirmDisabled: true, inputLabel: this.$gettext('Password'), inputType: 'password', onCancel: this.hideModal,