fix(files_sharing): clear the password after saving

Signed-off-by: Kent Delante <kent@delante.me>
This commit is contained in:
Kent Delante 2026-05-29 15:05:28 +08:00 committed by Andy Scherzinger
parent a1bc63779f
commit 2409f615e2

View file

@ -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')
},