Skip to content

Commit a3b4a55

Browse files
chore: allowCustomValue control updated in combobox's typeahead story (#20414)
* chore: combobox cleanup * chore: remove acv * fix: control fix --------- Co-authored-by: Kritvi <158570656+Kritvi-bhatia17@users.noreply.github.com>
1 parent f8f87d1 commit a3b4a55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/react/src/components/ComboBox/ComboBox.stories.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export const AutocompleteWithTypeahead = (args) => {
223223
return (
224224
<div style={{ width: 300 }}>
225225
<ComboBox
226-
allowCustomValue
226+
allowCustomValue={args.allowCustomValue}
227227
onChange={args.onChange}
228228
helperText="Combobox helper text"
229229
id="carbon-combobox"
@@ -411,5 +411,6 @@ export const _fullyControlled = (args) => {
411411
_fullyControlled.argTypes = { ...sharedArgTypes };
412412

413413
AutocompleteWithTypeahead.argTypes = {
414+
...sharedArgTypes,
414415
onChange: { action: 'onChange' },
415416
};

0 commit comments

Comments
 (0)