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