fix(frontend): '노트 - 리액션 목록' 기능이 작동하지 않음
This commit is contained in:
commit
ddc9256bdd
|
@ -38,6 +38,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
|
|||
- Fix: 알림 위젯 필터링이 작동하지 않을 수 있음 (kokonect-link/cherrypick#404)
|
||||
- Fix: 노트 자세히 보기에서 노트 작성 폼을 클릭하면 내용이 초기화될 수 있음 (kokonect-link/cherrypick#410)
|
||||
- Fix: '설정 - 타임라인' 페이지가 표시되지 않음
|
||||
- Fix: '노트 - 리액션 목록' 기능이 작동하지 않음
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
|
||||
<MkSpacer :marginMin="20" :marginMax="28">
|
||||
<div v-if="note" class="_gaps">
|
||||
<div v-if="reactions.length === 0" class="_fullinfo">
|
||||
<div v-if="reactions && reactions.length === 0" class="_fullinfo">
|
||||
<img :src="infoImageUrl" class="_ghost"/>
|
||||
<div>{{ i18n.ts.nothing }}</div>
|
||||
</div>
|
||||
|
@ -46,7 +46,7 @@ import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
|||
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
||||
import { userPage } from '@/filters/user.js';
|
||||
import { i18n } from '@/i18n.js';
|
||||
import { misskeyApi } from '@/scripts/misskey-api.js';
|
||||
import { misskeyApi, misskeyApiGet } from '@/scripts/misskey-api.js';
|
||||
import { infoImageUrl } from '@/instance.js';
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
@ -65,9 +65,9 @@ const reactions = ref<string[]>();
|
|||
const users = ref();
|
||||
|
||||
watch(tab, async () => {
|
||||
const res = await misskeyApi('notes/reactions', {
|
||||
const res = await misskeyApiGet('notes/reactions', {
|
||||
noteId: props.noteId,
|
||||
type: tab,
|
||||
type: tab.value,
|
||||
limit: 30,
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue