We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 435741e commit a809c82Copy full SHA for a809c82
src/views/SharingDetailsTab.vue
@@ -88,10 +88,10 @@
88
:placeholder="t('files_sharing', 'Expiration date')"
89
type="date"
90
@input="onExpirationChange" />
91
- <NcCheckboxRadioSwitch v-if="(isLinkShare || isEmailShare)" :checked.sync="writeNoteToRecipientIsChecked">
+ <NcCheckboxRadioSwitch v-if="isEmailShare" :checked.sync="writeNoteToRecipientIsChecked">
92
{{ t('files_sharing', 'Note to recipient') }}
93
</NcCheckboxRadioSwitch>
94
- <template v-if="writeNoteToRecipientIsChecked">
+ <template v-if="writeNoteToRecipientIsChecked && isEmailShare">
95
<textarea :value="share.note" @input="share.note = $event.target.value" />
96
</template>
97
<DownloadLimit v-if="(isLinkShare || isEmailShare) && !isNewShare && !isFolder"
0 commit comments