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:30:42 +0300
committerdartcafe <github@dartcafe.de>2021-07-06 22:30:42 +0300
commit22bda836c951ddad69cde5bc28f8ee586b3f49d0 (patch)
tree99eac14db5301e21e88d214be3f9aa73c25acf3f /src
parent1f40f9d0427437afcb834d9c439bdc693603c60f (diff)
fix #1814
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 5b56c8ea..66e2b418 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.dt).fromNow()
+ return moment.utc(this.comment.timestamp).fromNow()
},
},