diff options
| author | Srgr0 <66754887+Srgr0@users.noreply.github.com> | 2023-11-03 17:55:39 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-03 17:55:39 +0900 |
| commit | 8ddbe914620fc9d28311f9276dcd569c8674294f (patch) | |
| tree | f5e8b491aa0daa233a5df63f62b3ef9f3ebed494 /packages/frontend/src/components/MkReactionsViewer.reaction.vue | |
| parent | fix(frontend): サイレンス状態で公開範囲のパブリックを選... (diff) | |
| download | misskey-8ddbe914620fc9d28311f9276dcd569c8674294f.tar.gz misskey-8ddbe914620fc9d28311f9276dcd569c8674294f.tar.bz2 misskey-8ddbe914620fc9d28311f9276dcd569c8674294f.zip | |
11以上されているリアクションにおいてツールチップで示されるリアクション数が本来よりも1多い問題を修正 (#12219)
* Update MkReactionsViewer.reaction.vue
* Update CHANGELOG.md
* Update MkReactionsViewer.details.vue
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/src/components/MkReactionsViewer.reaction.vue')
| -rw-r--r-- | packages/frontend/src/components/MkReactionsViewer.reaction.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkReactionsViewer.reaction.vue b/packages/frontend/src/components/MkReactionsViewer.reaction.vue index d532ef9b66..2b850016c5 100644 --- a/packages/frontend/src/components/MkReactionsViewer.reaction.vue +++ b/packages/frontend/src/components/MkReactionsViewer.reaction.vue @@ -113,7 +113,7 @@ if (!mock) { const reactions = await os.apiGet('notes/reactions', { noteId: props.note.id, type: props.reaction, - limit: 11, + limit: 10, _cacheKey_: props.count, }); |