mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:51:18 +08:00
Deepscan fixes
This commit is contained in:
parent
95feebca58
commit
3515ad510e
@ -3,7 +3,6 @@ import React from 'react';
|
||||
import deprecate from 'util-deprecate';
|
||||
import dedent from 'ts-dedent';
|
||||
import mapValues from 'lodash/mapValues';
|
||||
import countBy from 'lodash/countBy';
|
||||
import global from 'global';
|
||||
import type {
|
||||
StoryId,
|
||||
@ -258,7 +257,7 @@ export const transformStoryIndexToStoriesHash = (
|
||||
|
||||
const storiesHashOutOfOrder = Object.values(entryValues).reduce((acc, item) => {
|
||||
// First, split the title into parts, and create an id for each part
|
||||
const { type, title, parameters } = item;
|
||||
const { type, title } = item;
|
||||
const groups = title.trim().split(TITLE_PATH_SEPARATOR);
|
||||
const root = (!setShowRoots || showRoots) && groups.length > 1 ? [groups.shift()] : [];
|
||||
|
||||
|
@ -11,7 +11,6 @@ import {
|
||||
import { EventEmitter } from 'events';
|
||||
import global from 'global';
|
||||
import { mockChannel } from '@storybook/addons';
|
||||
import { merge } from 'lodash';
|
||||
|
||||
import { getEventMetadata } from '../lib/events';
|
||||
|
||||
|
@ -72,7 +72,7 @@ const Main: FC<{ provider: Provider }> = ({ provider }) => {
|
||||
viewMode={state.viewMode}
|
||||
layout={isLoading ? { ...state.layout, showPanel: false } : state.layout}
|
||||
panelCount={panelCount}
|
||||
docsOnly={story.isComponent && story.isLeaf}
|
||||
docsOnly={story?.isComponent && story?.isLeaf}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user