fix v2 on v1
This commit is contained in:
parent
91272dc555
commit
a42a207e1b
1 changed files with 6 additions and 0 deletions
|
@ -58,6 +58,12 @@ const setColors = (col, commit) => {
|
|||
const body = document.body
|
||||
body.style.display = 'none'
|
||||
|
||||
// This prevents white screen with v2 themes on v1 engine
|
||||
if (!col.text) {
|
||||
body.style.display = 'initial'
|
||||
return
|
||||
}
|
||||
|
||||
const styleEl = document.createElement('style')
|
||||
head.appendChild(styleEl)
|
||||
const styleSheet = styleEl.sheet
|
||||
|
|
Loading…
Reference in a new issue