diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-24 14:39:42 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-24 14:39:42 +0900 |
| commit | fe7bc174fbb9ea0f367a61eca388da5ae56a12c0 (patch) | |
| tree | 7071ce94e2fc6780a98911693bb01629b64ba8de | |
| parent | 12.89.1 (diff) | |
| download | sharkey-fe7bc174fbb9ea0f367a61eca388da5ae56a12c0.tar.gz sharkey-fe7bc174fbb9ea0f367a61eca388da5ae56a12c0.tar.bz2 sharkey-fe7bc174fbb9ea0f367a61eca388da5ae56a12c0.zip | |
Fix #7689
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | src/server/web/boot.js | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e8add521b..205c780c2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ --> +## 12.89.2 (2021/08/24) + +### Bugfixes +- カスタムCSSを有効にしているとエラーになる問題を修正 + ## 12.89.1 (2021/08/24) ### Improvements diff --git a/src/server/web/boot.js b/src/server/web/boot.js index 7a41ae2555..a3a0685669 100644 --- a/src/server/web/boot.js +++ b/src/server/web/boot.js @@ -109,7 +109,7 @@ if (customCss && customCss.length > 0) { const style = document.createElement('style'); style.innerHTML = customCss; - head.appendChild(style); + document.head.appendChild(style); } // eslint-disable-next-line no-inner-declarations |