diff --git a/src/pages/trails/ballots/components/BallotListItem.vue b/src/pages/trails/ballots/components/BallotListItem.vue index c29d6b6..dab1414 100644 --- a/src/pages/trails/ballots/components/BallotListItem.vue +++ b/src/pages/trails/ballots/components/BallotListItem.vue @@ -83,7 +83,7 @@ export default { this.$nextTick(() => { const votedChip = this.$refs.votedChip; if (votedChip) { - votedChip.style.display = this.userVotes[this.ballot.ballot_name] ? 'flex' : 'none'; + votedChip.style.display = this.userVotes[this.ballot.ballot_name] ? 'flex' : 'none'; } }); },