We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
allowCustomValue
1 parent f8f87d1 commit a3b4a55Copy full SHA for a3b4a55
packages/react/src/components/ComboBox/ComboBox.stories.js
@@ -223,7 +223,7 @@ export const AutocompleteWithTypeahead = (args) => {
223
return (
224
<div style={{ width: 300 }}>
225
<ComboBox
226
- allowCustomValue
+ allowCustomValue={args.allowCustomValue}
227
onChange={args.onChange}
228
helperText="Combobox helper text"
229
id="carbon-combobox"
@@ -411,5 +411,6 @@ export const _fullyControlled = (args) => {
411
_fullyControlled.argTypes = { ...sharedArgTypes };
412
413
AutocompleteWithTypeahead.argTypes = {
414
+ ...sharedArgTypes,
415
onChange: { action: 'onChange' },
416
};
0 commit comments