diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bd91091d6..9c494fc53d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ --> +## 12.93.1 (2021/10/23) + +### Bugfixes +- クライアント: 通知上でローカルのリアクションが表示されないのを修正 + ## 12.93.0 (2021/10/23) ### Improvements diff --git a/package.json b/package.json index 97bdacc722..ea89c595b5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "misskey", "author": "syuilo ", - "version": "12.93.0", + "version": "12.93.1", "codename": "indigo", "repository": { "type": "git", diff --git a/src/client/components/notification.vue b/src/client/components/notification.vue index bce6333d98..8c2787cf31 100644 --- a/src/client/components/notification.vue +++ b/src/client/components/notification.vue @@ -13,7 +13,8 @@ - + +
diff --git a/src/client/components/updated.vue b/src/client/components/updated.vue index 5033d866fb..2f92f743e6 100644 --- a/src/client/components/updated.vue +++ b/src/client/components/updated.vue @@ -4,7 +4,7 @@
{{ $ts.misskeyUpdated }}
✨{{ version }}🚀
{{ $ts.whatIsNew }} - {{ $ts.gotIt }} + {{ $ts.gotIt }}
@@ -54,5 +54,9 @@ export default defineComponent({ > .version { margin: 1em 0; } + + > .gotIt { + margin: 8px 0 0 0; + } }