fix(files_sharing): clear the password after saving

Signed-off-by: Kent Delante <kent@delante.me>
pull/60825/head
Kent Delante 3 months ago committed by nextcloud-command
parent 58be1732fe
commit da448bfe03
  1. 5
      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')
},

Loading…
Cancel
Save