mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:01:06 +08:00
Fix missing FEATURES global
This commit is contained in:
parent
03149e8253
commit
d18d510407
@ -509,7 +509,7 @@ export const init: ModuleFn = ({
|
||||
}
|
||||
);
|
||||
|
||||
if (FEATURES.storyStoreV7) {
|
||||
if (FEATURES?.storyStoreV7) {
|
||||
indexClient = new StoryIndexClient();
|
||||
indexClient.addEventListener(INVALIDATE, () => fullAPI.fetchStoryList());
|
||||
await fullAPI.fetchStoryList();
|
||||
|
@ -358,7 +358,7 @@ export class StoryStore<TFramework extends AnyFramework> {
|
||||
(story) => ({
|
||||
...pick(story, ['id', 'name', 'title']),
|
||||
importPath: this.storyIndex.stories[story.id].importPath,
|
||||
...(!FEATURES.breakingChangesV7 && {
|
||||
...(!FEATURES?.breakingChangesV7 && {
|
||||
kind: story.title,
|
||||
story: story.name,
|
||||
parameters: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user