Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Aug 24, 2021
2 parents e967d9d + f844838 commit 7115bd4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
-->

## 12.89.2 (2021/08/24)

### Bugfixes
- カスタムCSSを有効にしているとエラーになる問題を修正

## 12.89.1 (2021/08/24)

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "misskey",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"version": "12.89.1",
"version": "12.89.2",
"codename": "indigo",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/server/web/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7115bd4

Please sign in to comment.