summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorStephan Orbaugh <62374139+sorbaugh@users.noreply.github.com>2024-03-15 09:12:31 +0100
committerGitHub <noreply@github.com>2024-03-15 09:12:31 +0100
commitd0f63c97beac4599e065992acb2bcbfddaef577c (patch)
tree669d561b1e22f8811b65275aceca8d18a9876f2a /apps
parentba6e23e793a5ca77ba4e56d3eb72dbb22d6daa80 (diff)
parent8699d1677733e191fb63baa10ea82e00cdf7b1ea (diff)
downloadnextcloud-server-d0f63c97beac4599e065992acb2bcbfddaef577c.tar.gz
nextcloud-server-d0f63c97beac4599e065992acb2bcbfddaef577c.zip
Merge pull request #44193 from nextcloud/backport/44184/stable27
[stable27] fix: No password set for new mail shares
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/src/views/SharingDetailsTab.vue2
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 */