diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-03-14 00:43:10 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-14 13:14:18 +0100 |
commit | 56064697c87aeb2b904819106146583fe71b4e3d (patch) | |
tree | 4640d94698d1dd017c52b9717d7a3930f36d84d2 | |
parent | cdbea2f178e11b93aac4de8997d1462f10a800e3 (diff) | |
download | nextcloud-server-56064697c87aeb2b904819106146583fe71b4e3d.tar.gz nextcloud-server-56064697c87aeb2b904819106146583fe71b4e3d.zip |
fix: No password set for new mail shares
Before the password is set on a new share, the computed property `hasUnsavedPassword`
is used to check that `this.share.newPassword` is not undefined. Direct assignment without
using Vue's `this.$set` makes it impossible for vue to detect that changes have happened on the share
object. Hence the inreactivity.
This worked initially most likely because `this.share.newPassword = await GeneratePassword()` was executed
before the computed properties where evaluated.
Resolves : https://github.com/nextcloud/server/issues/43919
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
-rw-r--r-- | apps/files_sharing/src/views/SharingDetailsTab.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index 70b8caa3c7c..6e07d36301f 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -683,7 +683,7 @@ export default { if (this.isNewShare) { if (this.isPasswordEnforced && this.isPublicShare) { - this.share.newPassword = await GeneratePassword() + this.$set(this.share, 'newPassword', await GeneratePassword()) this.advancedSectionAccordionExpanded = true } /* Set default expiration dates if configured */ |