diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-13 22:48:56 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-13 22:48:56 +0900 |
| commit | 8755b5f353b29e2f7e1c04d5c3346d62b097b2e4 (patch) | |
| tree | 4b23ceb62809011d62b6f681cd805eed12f2d352 | |
| parent | Update dependencies :rocket: (diff) | |
| download | misskey-8755b5f353b29e2f7e1c04d5c3346d62b097b2e4.tar.gz misskey-8755b5f353b29e2f7e1c04d5c3346d62b097b2e4.tar.bz2 misskey-8755b5f353b29e2f7e1c04d5c3346d62b097b2e4.zip | |
Fix bug
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/client/components/menu.vue | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 157c895072..3356ea8410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ unreleased ### 🐛Fixes * タイムラインに自分の返信と自分への返信と投稿者自身への返信以外の返信が含まれている問題を修正 * グループがない状態でグループチャットを開始しようとするとフリーズする問題を修正 +* 通知インジケーターがずれる問題を修正 12.8.0 (2020/02/13) -------------------- diff --git a/src/client/components/menu.vue b/src/client/components/menu.vue index a961399883..747c928452 100644 --- a/src/client/components/menu.vue +++ b/src/client/components/menu.vue @@ -125,6 +125,7 @@ export default Vue.extend({ > .item { display: block; + position: relative; padding: 8px 16px; width: 100%; box-sizing: border-box; |