Skip to content

Commit

Permalink
chore: Hide 100% cap limits from vebal table
Browse files Browse the repository at this point in the history
  • Loading branch information
garethfuller committed Jan 26, 2023
1 parent 6e2c8a3 commit aa64b79
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,10 @@ function getPickedTokens(tokens: PoolToken[]) {
"
/>
<IconLimit
v-else-if="gauge.relativeWeightCap !== 'null'"
v-else-if="
gauge.relativeWeightCap !== 'null' &&
gauge.relativeWeightCap !== '1'
"
size="sm"
:amount="(Number(gauge.relativeWeightCap) * 100).toFixed()"
:tooltip="
Expand Down

0 comments on commit aa64b79

Please sign in to comment.