logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 01275fbac0e28d183e761e656a8e7b1c3b9612e9
parent 13ff99881b3eff6f69b94d838845a63100a5c234
Author: eugenijm <eugenijm@protonmail.com>
Date:   Wed, 10 Feb 2021 15:55:58 +0300

Ensure poll.voters_count doesn't fallback to poll.votes when it's 0

Diffstat:

Msrc/components/poll/poll.vue2+-
Msrc/i18n/en.json1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/components/poll/poll.vue b/src/components/poll/poll.vue @@ -58,7 +58,7 @@ {{ $t('polls.vote') }} </button> <div class="total"> - <template v-if="poll.voters_count"> + <template v-if="typeof poll.voters_count === 'number'"> {{ $tc("polls.people_voted_count", poll.voters_count, { count: poll.voters_count }) }}&nbsp;ยท&nbsp; </template> <template v-else> diff --git a/src/i18n/en.json b/src/i18n/en.json @@ -147,6 +147,7 @@ "add_poll": "Add Poll", "add_option": "Add Option", "option": "Option", + "votes": "votes", "people_voted_count": "{count} person voted | {count} people voted", "votes_count": "{count} vote | {count} votes", "vote": "Vote",