diff --git a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap index 0fed0e3e02..f83e1c2da5 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap @@ -11259,6 +11259,12 @@ use the \`id\` attribute, consider setting it on a parent element instead.", "optional": true, "type": "string", }, + { + "description": "Shows tokens inside the trigger instead of below it.", + "name": "inlineTokens", + "optional": true, + "type": "boolean", + }, { "description": "Overrides the invalidation state. Usually the invalid state comes from the parent \`FormField\`component, diff --git a/src/multiselect/interfaces.ts b/src/multiselect/interfaces.ts index 0a3e02a5ef..5ebe51e7ee 100644 --- a/src/multiselect/interfaces.ts +++ b/src/multiselect/interfaces.ts @@ -24,7 +24,7 @@ export interface MultiselectProps extends BaseSelectProps { */ hideTokens?: boolean; /** - * Shows tokens inside the input instead of below. + * Shows tokens inside the trigger instead of below it. */ inlineTokens?: boolean; /**