Merge pull request #42780 from nextcloud/backport/42126/stable27

[stable27] Tooltip outside click, should abort share creation
This commit is contained in:
F. E Noel Nfebe 2024-02-14 06:36:33 +01:00 committed by GitHub
commit e2e226d856
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 7 deletions

View file

@ -58,7 +58,7 @@
:aria-label="actionsTooltip"
menu-align="right"
:open.sync="open"
@close="onNewLinkShare">
@close="onCancel">
<!-- pending data menu -->
<NcActionText v-if="errors.pending" icon="icon-error" :class="{ error: errors.pending }">
{{ errors.pending }}

View file

@ -221,10 +221,9 @@ export default {
*
* @param {Date} date
*/
onExpirationChange(date) {
onExpirationChange: debounce((date) => {
this.share.expireDate = this.formatDateToString(new Date(date))
},
}, 500),
/**
* Uncheck expire date
* We need this method because @update:checked

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long