Fix RadioDropdown key

This commit is contained in:
Gregory Schier
2024-06-24 11:18:38 -07:00
committed by GitHub
parent 94abb6838a
commit 408f42b86b

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,