💄 QoL for location column

This commit is contained in:
Fred KISSIE
2026-08-18 21:08:16 +02:00
parent 668a04bcd2
commit 195f67c6eb
2 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ import { useTranslations } from "next-intl";
interface FilterOption {
value: string;
label: string;
label: React.ReactNode;
}
interface ColumnFilterButtonProps {
@@ -101,7 +101,7 @@ export function ColumnFilterButton({
{options.map((option) => (
<CommandItem
key={option.value}
value={option.label}
value={option.value}
onSelect={() => {
onValueChange(
selectedValue === option.value