Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-07-06 22:49:59 +0300
committerdartcafe <github@dartcafe.de>2021-07-06 22:49:59 +0300
commit04cf249a71bee743bbec4a656a0e915b9c57ddf8 (patch)
tree88ae1110f517ba07c59d15dd52125fcac41f9591 /src
parent22bda836c951ddad69cde5bc28f8ee586b3f49d0 (diff)
fix
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Comments/CommentItem.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/components/Comments/CommentItem.vue b/src/js/components/Comments/CommentItem.vue
index 66e2b418..2ba4a229 100644
--- a/src/js/components/Comments/CommentItem.vue
+++ b/src/js/components/Comments/CommentItem.vue
@@ -68,7 +68,7 @@ export default {
acl: (state) => state.poll.acl,
}),
dateCommentedRelative() {
- return moment.utc(this.comment.timestamp).fromNow()
+ return moment.unix(this.comment.timestamp).fromNow()
},
},