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 nextcloud-command
parent 58be1732fe
commit da448bfe03

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