mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:41:21 +08:00
Addon-knobs: Fix null knob values in select (#9416)
Addon-knobs: Fix null knob values in select
This commit is contained in:
parent
39201f2a55
commit
42fa30ba0a
@ -32,7 +32,7 @@ const SelectType: FunctionComponent<SelectTypeProps> & {
|
||||
const { options } = knob;
|
||||
|
||||
const callbackReduceArrayOptions = (acc: any, option: any, i: number) => {
|
||||
if (typeof option !== 'object') return { ...acc, [option]: option };
|
||||
if (typeof option !== 'object' || option === null) return { ...acc, [option]: option };
|
||||
const label = option.label || option.key || i;
|
||||
return { ...acc, [label]: option };
|
||||
};
|
||||
|
@ -45,6 +45,12 @@ export default {
|
||||
decorators: [withKnobs],
|
||||
};
|
||||
|
||||
export const selectKnob = () => {
|
||||
const value = select('value', [1, 2, 3, undefined, null], 1);
|
||||
|
||||
return <div>{JSON.stringify({ value: String(value) }, null, 2)}</div>;
|
||||
};
|
||||
|
||||
export const TweaksStaticValues = () => {
|
||||
const name = text('Name', 'Storyteller');
|
||||
const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 });
|
||||
|
Loading…
x
Reference in New Issue
Block a user