Skip to content

Commit

Permalink
Merge branch 'feat-implement-hide-abstain-into-quorum-calculation' of h…
Browse files Browse the repository at this point in the history
…ttps://github.com/snapshot-labs/sx-monorepo into feat-implement-hide-abstain-into-quorum-calculation
  • Loading branch information
wa0x6e committed Jan 13, 2025
2 parents fce691d + 92edb6d commit 8e9a065
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/ui/src/components/ProposalResults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ const results = computed(() => {
const progress = parsedTotal !== 0 ? (score / parsedTotal) * 100 : 0;
if (hideAbstain.value && i === 2) {
return;
}
return {
choice: i + 1,
progress,
Expand Down

0 comments on commit 8e9a065

Please sign in to comment.