mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
Merge pull request #13845 from somenickname/12357_fix_first_tab_named_story
Addon-docs: Fix ArgsTable tab renamed to `Story` when using args
This commit is contained in:
commit
3ea21b737f
@ -152,9 +152,11 @@ export const StoryTable: FC<
|
||||
}
|
||||
storyArgTypes = filterArgTypes(storyArgTypes, include, exclude);
|
||||
|
||||
const mainLabel = getComponentName(component) || 'Story';
|
||||
|
||||
// eslint-disable-next-line prefer-const
|
||||
let [args, updateArgs, resetArgs] = useArgs(storyId, storyStore);
|
||||
let tabs = { Story: { rows: storyArgTypes, args, updateArgs, resetArgs } } as Record<
|
||||
let tabs = { [mainLabel]: { rows: storyArgTypes, args, updateArgs, resetArgs } } as Record<
|
||||
string,
|
||||
PureArgsTableProps
|
||||
>;
|
||||
@ -170,7 +172,6 @@ export const StoryTable: FC<
|
||||
}
|
||||
|
||||
if (component && (!storyHasArgsWithControls || showComponent)) {
|
||||
const mainLabel = getComponentName(component);
|
||||
tabs = addComponentTabs(tabs, { [mainLabel]: component }, context, include, exclude);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user