We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Side panel is empty:
In attempt go to component directly (copy link in other than IE11 browser) throws SecurityError which pointing to https://github.com/storybooks/storybook/blob/master/lib/ui/src/modules/ui/configs/handle_routing.js#L51 (there no try/catch)
To Reproduce Steps to reproduce the behavior:
OR
Expected behavior There should be items in sidebar, search by components should work
Code snippets package.json versions:
"@storybook/addon-actions": "4.0.9", "@storybook/addon-console": "1.1.0", "@storybook/addon-info": "4.0.9", "@storybook/addon-knobs": "4.0.9", "@storybook/addon-links": "4.0.9", "@storybook/addon-options": "4.0.8", "@storybook/addon-storyshots": "4.0.9", "@storybook/addons": "4.0.9", "@storybook/react": "4.0.9",
Addons:
import '@storybook/addon-knobs/register'; import '@storybook/addon-actions/register'; import '@storybook/addon-links/register'; import '@storybook/addon-options/register';
Config:
import '@babel/polyfill'; import {configure, addDecorator} from '@storybook/react'; import '@storybook/addon-console'; import {withOptions} from '@storybook/addon-options'; import {withInfo} from '@storybook/addon-info'; import colors from '@shelf/client-helpers/lib/colors'; import TableComponent from './InfoTableComponent'; const {$orangish} = colors; addDecorator( withOptions({ name: 'Shelf React Components', url: 'https://shelf.io', hierarchySeparator: '\\->', addonPanelInRight: false }) ); // automatically import all files ending in *.stories.js const req = require.context('../stories', true, /.stories.js$/); function loadStories() { req.keys().forEach(filename => req(filename)); } /** This overrides default withInfo options */ const withInfoDefaultOptions = { inline: true, styles: { header: { h1: { color: $orangish } }, infoBody: { padding: '20px' }, infoStory: { marginTop: '30px', marginBottom: '30px', border: '1px solid #eee', padding: '20px', borderRadius: '2px' }, propTableHead: { margin: '20px 0 5px 0' } }, TableComponent }; addDecorator(withInfo(withInfoDefaultOptions)); configure(loadStories, module);
System:
The text was updated successfully, but these errors were encountered:
Fixed with new alpha 🎉
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Side panel is empty:
In attempt go to component directly (copy link in other than IE11 browser) throws SecurityError which pointing to https://github.com/storybooks/storybook/blob/master/lib/ui/src/modules/ui/configs/handle_routing.js#L51 (there no try/catch)
To Reproduce
Steps to reproduce the behavior:
OR
OR
Expected behavior
There should be items in sidebar, search by components should work
Code snippets
package.json versions:
Addons:
Config:
System:
The text was updated successfully, but these errors were encountered: