Skip to content

Commit

Permalink
Fix some SCSS variables not being set
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelthomas2774 committed Mar 17, 2019
1 parent c9e1cd7 commit 90035c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/modules/thememanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default class ThemeManager extends ContentManager {
const name = setting.id.replace(/[^a-zA-Z0-9-]/g, '-').replace(/--/g, '-');
const scss = await setting.toSCSS();

if (scss) return [name, scss];
if (typeof scss !== 'undefined') return [name, scss];
}

/**
Expand Down

0 comments on commit 90035c0

Please sign in to comment.