Skip to content

Commit

Permalink
fix: MET-2108 update format value
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-TaiTruong committed Apr 26, 2024
1 parent 070eeb8 commit 7c37cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/commons/CustomFilterMultiRange/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ const CustomFilterMultiRange: React.FC = () => {
</Box>
{groupInputRange(
+formatPercent(filterParams.minGovParticipationRate || 0).replace("%", ""),
filterParams.maxGovParticipationRate
filterParams.maxGovParticipationRate !== undefined
? +formatPercent(filterParams.maxGovParticipationRate || 0).replace("%", "")
: +formatPercent(initParams.maxGovParticipationRate || 0).replace("%", ""),
"minGovParticipationRate",
Expand Down

0 comments on commit 7c37cb3

Please sign in to comment.