Various UI tweaks and changes (#12364)

This commit is contained in:
Josh Hawkins
2024-07-09 14:36:55 -05:00
committed by GitHub
parent aacb8c84e0
commit d2f88491b1
5 changed files with 9 additions and 5 deletions

View File

@@ -456,7 +456,7 @@ function PlusFilterGroup({
<div className="hidden text-primary md:block">
{selectedScoreRange == undefined
? "Score Range"
: `${selectedScoreRange[0] * 100}% - ${selectedScoreRange[1] * 100}%`}
: `${Math.round(selectedScoreRange[0] * 100)}% - ${Math.round(selectedScoreRange[1] * 100)}%`}
</div>
</Button>
</Trigger>