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:
Michael Shilman 2021-02-20 21:34:07 +08:00 committed by GitHub
commit 3ea21b737f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}