fix(heatmap): replace SelectValue component with span for displaying selected value

This commit is contained in:
null 2026-05-22 21:04:02 -05:00
parent bf986529b3
commit d850b9bbfb
1 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ import {
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
interface ForgejoHeatmapProps {
@ -150,7 +149,7 @@ function RangeSelect({
}
}
>
<SelectValue />
<span>{value}</span>
</SelectTrigger>
<SelectContent align="end" className="min-w-[8rem]">
{RANGE_LABELS.map((range) => (