Fixes for build

This commit is contained in:
Tom Coleman 2022-04-26 12:55:04 +10:00
parent 4134f6bc22
commit c778bb55f2
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -59,7 +59,7 @@ export interface Story {
depth: number;
parent: StoryId;
name: string;
title: StoryKind;
title: ComponentTitle;
importPath: Path;
refId?: string;
children?: StoryId[];