Deepscan fixes

This commit is contained in:
Tom Coleman 2022-04-23 12:57:11 +10:00
parent 95feebca58
commit 3515ad510e
3 changed files with 2 additions and 4 deletions

View File

@ -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()] : [];

View File

@ -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';

View File

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