diff --git a/src/components/forms/Select/Select.stories.tsx b/src/components/forms/Select/Select.stories.tsx index fc83cafdc3..f8b791c934 100644 --- a/src/components/forms/Select/Select.stories.tsx +++ b/src/components/forms/Select/Select.stories.tsx @@ -20,7 +20,7 @@ export default { }, argTypes: { validationStatus: { - options: ['error', 'success'], + options: ['error', 'success', 'undefined'], control: 'radio', }, disabled: { control: 'boolean' }, @@ -33,6 +33,10 @@ const options = ( + ) @@ -65,3 +69,9 @@ export const WithLabel = () => ( ) + +export const Multiselect = () => ( + +)