diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index fc145396195..c1cc67ca722 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -1173,6 +1173,11 @@ export default { })) } + // clear the password after saving + if (this.share.newPassword) { + this.$set(this.share, 'newPassword', undefined) + } + this.$emit('close-sharing-details') },