diff options
author | Gary Kim <gary@garykim.dev> | 2020-04-17 21:10:42 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2020-04-30 22:35:52 +0800 |
commit | 02b5ded8403f9027d15739b1dea53ec2187bee93 (patch) | |
tree | d93108c52305bb99abc29475f0e7abf49673dabb /apps/files_sharing/src/components/SharingEntryLink.vue | |
parent | 0fc2dd85b5cb8793053469c0942931fa23304872 (diff) | |
download | nextcloud-server-02b5ded8403f9027d15739b1dea53ec2187bee93.tar.gz nextcloud-server-02b5ded8403f9027d15739b1dea53ec2187bee93.zip |
Fix share expiration date not shown
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index c7771cc8104..5e15db16685 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -104,6 +104,7 @@ :lang="lang" icon="" type="date" + value-type="format" :not-before="dateTomorrow" :not-after="dateMaxEnforced"> <!-- let's not submit when picked, the user @@ -227,6 +228,7 @@ :first-day-of-week="firstDay" :lang="lang" :value="share.expireDate" + value-type="format" icon="icon-calendar-dark" type="date" :not-before="dateTomorrow" |