fix: display correct percentages for multiple choice polls (#1821)

This commit is contained in:
Zaidhaan 2023-02-25 04:39:45 +08:00 committed by GitHub
parent 958f5967b9
commit 8c783204d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ const votersCount = $computed(() => poll.votersCount ?? poll.votesCount ?? 0)
<div
v-for="(option, index) of poll.options"
:key="index" py-1 relative
:style="{ '--bar-width': toPercentage((option.votesCount || 0) / poll.votesCount) }"
:style="{ '--bar-width': toPercentage((option.votesCount || 0) / votersCount) }"
>
<div flex justify-between pb-2 w-full>
<span inline-flex align-items>