Skip to content

Commit 23f1c00

Browse files
committed
fix(ComboBox): support for legacy field * 3
1 parent 4555cf8 commit 23f1c00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/form/Form/Field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function getValueProps(
6565
};
6666
} else if (type === 'ComboBox') {
6767
return {
68-
selectedKey: value,
68+
selectedKey: value ?? null,
6969
onSelectionChange: onChange,
7070
};
7171
} else if (type === 'Select') {

0 commit comments

Comments
 (0)