Skip to content

Commit 7fbd0f4

Browse files
nfebebackportbot[bot]
authored andcommitted
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>
1 parent 755c05a commit 7fbd0f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/files_sharing/src/views/SharingDetailsTab.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,8 +905,9 @@ export default {
905905
this.advancedSectionAccordionExpanded = true
906906
}
907907
908-
if (this.share.note) {
908+
if (this.isValidShareAttribute(this.share.note)) {
909909
this.writeNoteToRecipientIsChecked = true
910+
this.advancedSectionAccordionExpanded = true
910911
}
911912
912913
},

0 commit comments

Comments
 (0)