Skip to content

Commit 42065a8

Browse files
committed
fix(ComboBox): support for legacy field * 5
1 parent 66bdd39 commit 42065a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/fields/ComboBox/ComboBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export interface CubeComboBoxProps<T>
109109
AriaComboBoxProps<T>,
110110
AriaTextFieldProps {
111111
defaultSelectedKey?: string;
112-
selectedKey?: string;
112+
selectedKey?: string | null;
113113
onSelectionChange?: (selectedKey: string | null) => void;
114114
onInputChange?: (inputValue: string) => void;
115115
inputValue?: string;

0 commit comments

Comments
 (0)