diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-01-22 16:19:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-01-22 16:19:40 +0100 |
commit | 24d84736415bb905a67c73ed5259e0e6cd75dcfd (patch) | |
tree | ad4655ebd8077fd4275251078e86f638276f3c6f /apps/comments/src | |
parent | 9f81239033b1c386a1aa026632b63cbeb8f14df8 (diff) | |
download | nextcloud-server-24d84736415bb905a67c73ed5259e0e6cd75dcfd.tar.gz nextcloud-server-24d84736415bb905a67c73ed5259e0e6cd75dcfd.zip |
Only include moments once in comments
Shaves off a decent amount of the code size. Let alone the parsing.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/comments/src')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index a8a46ba031f..fb1f073479c 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -94,7 +94,7 @@ <script> import { getCurrentUser } from '@nextcloud/auth' -import moment from 'moment' +import moment from '@nextcloud/moment' import ActionButton from '@nextcloud/vue/dist/Components/ActionButton' import Actions from '@nextcloud/vue/dist/Components/Actions' |