Fix some SCSS variables not being set

This commit is contained in:
Samuel Elliott 2019-03-17 08:12:32 +00:00
parent c9e1cd7b0c
commit 90035c066f
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 1 additions and 1 deletions

View File

@ -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];
}
/**