Fix RadioDropdown key

This commit is contained in:
Gregory Schier
2024-06-24 11:18:38 -07:00
committed by GitHub
parent 151450f55b
commit c9040a6e5f

View File

@@ -36,7 +36,7 @@ export function RadioDropdown<T = string | null>({
return item;
} else {
return {
key: item.label,
key: item.value,
label: item.label,
shortLabel: item.shortLabel,
rightSlot: item.rightSlot,