Skip to content
Snippets Groups Projects
Commit fe7bc174 authored by syuilo's avatar syuilo
Browse files

Fix #7689

parent c3b55b68
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,11 @@ ...@@ -7,6 +7,11 @@
--> -->
## 12.89.2 (2021/08/24)
### Bugfixes
- カスタムCSSを有効にしているとエラーになる問題を修正
## 12.89.1 (2021/08/24) ## 12.89.1 (2021/08/24)
### Improvements ### Improvements
......
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
if (customCss && customCss.length > 0) { if (customCss && customCss.length > 0) {
const style = document.createElement('style'); const style = document.createElement('style');
style.innerHTML = customCss; style.innerHTML = customCss;
head.appendChild(style); document.head.appendChild(style);
} }
// eslint-disable-next-line no-inner-declarations // eslint-disable-next-line no-inner-declarations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment