diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2020-10-11 13:08:59 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-11-05 15:55:39 +0100 |
commit | a46c3297345e7b86108a98c2fdeaa8934646e670 (patch) | |
tree | d9a9e71b6ed44dde16578737275b66d64386e77d /apps/files_sharing/src | |
parent | ecbe8cb4c9dc900fb4cfb56f94cc62b97148c190 (diff) | |
download | nextcloud-server-a46c3297345e7b86108a98c2fdeaa8934646e670.tar.gz nextcloud-server-a46c3297345e7b86108a98c2fdeaa8934646e670.zip |
Add confirm button in new link share pending expire/password menu
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 880f0d8111a..682125ef836 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -113,6 +113,9 @@ {{ t('files_sharing', 'Enter a date') }} </ActionInput> + <ActionButton icon="icon-checkmark" @click.prevent.stop="onNewLinkShare"> + {{ t('files_sharing', 'Create share') }} + </ActionButton> <ActionButton icon="icon-close" @click.prevent.stop="onCancel"> {{ t('files_sharing', 'Cancel') }} </ActionButton> |