Merge branch 'develop'

This commit is contained in:
syuilo 2021-08-24 14:40:22 +09:00
commit 7115bd46ff
3 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -1,7 +1,7 @@
{ {
"name": "misskey", "name": "misskey",
"author": "syuilo <syuilotan@yahoo.co.jp>", "author": "syuilo <syuilotan@yahoo.co.jp>",
"version": "12.89.1", "version": "12.89.2",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View file

@ -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