CLEANUP && FIX issue if there are no cssresources

This commit is contained in:
Norbert de Langen 2018-12-05 12:14:09 +01:00
parent b806539e6a
commit 7c3b15dec6
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 2 additions and 11 deletions

View File

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

View File

@ -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: {