mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
fix(files_sharing): Show note if note exists on share
When a share includes a note, ensure the note checkbox is checked and the note is displayed when reopening the share sidebar. Fixes: #52794. Signed-off-by: nfebe <fenn25.fn@gmail.com>
This commit is contained in:
parent
e786bd60c2
commit
bd46760586
1 changed files with 2 additions and 1 deletions
|
|
@ -836,8 +836,9 @@ export default {
|
|||
this.advancedSectionAccordionExpanded = true
|
||||
}
|
||||
|
||||
if (this.share.note) {
|
||||
if (this.isValidShareAttribute(this.share.note)) {
|
||||
this.writeNoteToRecipientIsChecked = true
|
||||
this.advancedSectionAccordionExpanded = true
|
||||
}
|
||||
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue