From 8abf8b7100ecc49a42006057eb78b375bb94bd3d Mon Sep 17 00:00:00 2001 From: Jan Date: Thu, 24 Aug 2023 17:34:47 +0200 Subject: [PATCH] close dd on date pick (#9612) * close dd on date pick * Update changelog item --- .../enhancement-set-expiration-date-in-three-dots-menu | 3 ++- .../InviteCollaborator/InviteCollaboratorForm.vue | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog/unreleased/enhancement-set-expiration-date-in-three-dots-menu b/changelog/unreleased/enhancement-set-expiration-date-in-three-dots-menu index 35fc2a6e520..b4435d77acd 100644 --- a/changelog/unreleased/enhancement-set-expiration-date-in-three-dots-menu +++ b/changelog/unreleased/enhancement-set-expiration-date-in-three-dots-menu @@ -1,5 +1,6 @@ Enhancement: Moving share's "set expiration date" function Moving "set expiration date" function to a three dots menu to help reduce visual load on simple shares in sharing pane -https://github.com/owncloud/web/issues/9493 https://github.com/owncloud/web/pull/9584 +https://github.com/owncloud/web/pull/9612 +https://github.com/owncloud/web/issues/9493 diff --git a/packages/web-app-files/src/components/SideBar/Shares/Collaborators/InviteCollaborator/InviteCollaboratorForm.vue b/packages/web-app-files/src/components/SideBar/Shares/Collaborators/InviteCollaborator/InviteCollaboratorForm.vue index 592d9ba6ebd..d7c634e359b 100644 --- a/packages/web-app-files/src/components/SideBar/Shares/Collaborators/InviteCollaborator/InviteCollaboratorForm.vue +++ b/packages/web-app-files/src/components/SideBar/Shares/Collaborators/InviteCollaborator/InviteCollaboratorForm.vue @@ -134,6 +134,7 @@ import { formatRelativeDateFromDateTime } from 'web-pkg' import { DateTime } from 'luxon' +import { OcDrop } from 'design-system/src/components' // just a dummy function to trick gettext tools const $gettext = (str) => { @@ -382,6 +383,7 @@ export default defineComponent({ collaboratorExpiryChanged({ expirationDate }) { this.expirationDate = expirationDate + ;(this.$refs.showMoreShareOptionsDropRef as InstanceType).hide() }, async share() {