mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
fix(files_sharing): clear the password after saving
Signed-off-by: Kent Delante <kent@delante.me>
This commit is contained in:
parent
58be1732fe
commit
da448bfe03
1 changed files with 5 additions and 0 deletions
|
|
@ -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')
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue