Skip to content

Commit

Permalink
Merge pull request #26058 from nextcloud/backport/25911/stable21
Browse files Browse the repository at this point in the history
[stable21] Only clear share password model when actually saved
  • Loading branch information
PVince81 authored Mar 11, 2021
2 parents 1d0b210 + ec44315 commit 04dd7b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/files_sharing_tab.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/files_sharing_tab.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions apps/files_sharing/src/mixins/SharesMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,11 +248,14 @@ export default {
try {
await this.updateShare(this.share.id, properties)

if (propertyNames.indexOf('password') >= 0) {
// reset password state after sync
this.$delete(this.share, 'newPassword')
}

// clear any previous errors
this.$delete(this.errors, propertyNames[0])

// reset password state after sync
this.$delete(this.share, 'newPassword')
} catch ({ message }) {
if (message && message !== '') {
this.onSyncError(propertyNames[0], message)
Expand Down

0 comments on commit 04dd7b2

Please sign in to comment.