From bdf743b68b176db2ed415a8e0bfc63328fddb81f Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 20 Feb 2023 09:29:29 -0600 Subject: [PATCH] revert --- app/views/post/view.pug | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/post/view.pug b/app/views/post/view.pug index ac4925a..7c64600 100644 --- a/app/views/post/view.pug +++ b/app/views/post/view.pug @@ -56,13 +56,13 @@ block content +renderButtonIcon('fa-trash', 'delete') .uk-width-auto - +renderButtonIcon('fa-eye', formatCount(post.stats.totalViewCount)) + +renderButtonIcon('fa-eye', displayIntegerValue(post.stats.totalViewCount)) .uk-width-auto - +renderButtonIcon('fa-chevron-up', formatCount(post.stats.upvoteCount)) + +renderButtonIcon('fa-chevron-up', displayIntegerValue(post.stats.upvoteCount)) .uk-width-auto - +renderButtonIcon('fa-chevron-down', formatCount(post.stats.downvoteCount)) + +renderButtonIcon('fa-chevron-down', displayIntegerValue(post.stats.downvoteCount)) .uk-width-auto - +renderButtonIcon('fa-comment', formatCount(post.stats.commentCount)) + +renderButtonIcon('fa-comment', displayIntegerValue(post.stats.commentCount)) .uk-margin != post.content