mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Fixes for build
This commit is contained in:
parent
4134f6bc22
commit
c778bb55f2
@ -114,10 +114,10 @@ export const StoryPanel: React.FC<StoryPanelProps> = ({ api }) => {
|
||||
const location = locationsMap[key];
|
||||
const first = location.startLoc.line - 1;
|
||||
const last = location.endLoc.line;
|
||||
const { kind, refId } = story;
|
||||
const { title, refId } = story;
|
||||
// source loader ids are different from story id
|
||||
const sourceIdParts = key.split('--');
|
||||
const id = api.storyId(kind, sourceIdParts[sourceIdParts.length - 1]);
|
||||
const id = api.storyId(title, sourceIdParts[sourceIdParts.length - 1]);
|
||||
const start = createPart({ rows: rows.slice(lastRow, first), stylesheet, useInlineStyles });
|
||||
const storyPart = createStoryPart({ rows, stylesheet, useInlineStyles, location, id, refId });
|
||||
|
||||
|
@ -59,7 +59,7 @@ export interface Story {
|
||||
depth: number;
|
||||
parent: StoryId;
|
||||
name: string;
|
||||
title: StoryKind;
|
||||
title: ComponentTitle;
|
||||
importPath: Path;
|
||||
refId?: string;
|
||||
children?: StoryId[];
|
||||
|
Loading…
x
Reference in New Issue
Block a user