mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
CLEANUP && FIX issue if there are no cssresources
This commit is contained in:
parent
b806539e6a
commit
7c3b15dec6
@ -34,10 +34,9 @@ export default class CssResourcePanel extends Component {
|
||||
onStoryChange = id => {
|
||||
const { api } = this.props;
|
||||
const list = api.getParameters(id, PARAM_KEY);
|
||||
const picked = list.filter(res => res.picked);
|
||||
console.log({ list });
|
||||
|
||||
if (list) {
|
||||
const picked = list.filter(res => res.picked);
|
||||
this.setState({ list }, () => this.emit(picked));
|
||||
}
|
||||
};
|
||||
|
@ -79,15 +79,7 @@ export const dark = {
|
||||
overlayBackground:
|
||||
'linear-gradient(to bottom right, rgba(17, 17, 34, 0.6), rgba(51, 51, 51, 0.8))',
|
||||
|
||||
// brand: {
|
||||
// width: '100%',
|
||||
// height: 40,
|
||||
// backgroundSize: 'contain',
|
||||
// backgroundRepeat: 'no-repeat',
|
||||
// backgroundPosition: '0 0',
|
||||
// backgroundImage: logo,
|
||||
// },
|
||||
|
||||
brand: Brand,
|
||||
code: darkSyntax,
|
||||
|
||||
addonActionsTheme: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user