mirror of
https://github.com/sim1222/misskey.git
synced 2025-04-29 02:37:22 +09:00
fix: いっぱい2
This commit is contained in:
parent
2b057fe2e1
commit
cba0a84125
@ -16,7 +16,7 @@
|
|||||||
</MkA>
|
</MkA>
|
||||||
</div>
|
</div>
|
||||||
</FormFolder>
|
</FormFolder>
|
||||||
<MkError v-if="tes.length === 0"/>
|
<MkError v-if="tes.length === 0 && !fetching"/>
|
||||||
</MkStickyContainer>
|
</MkStickyContainer>
|
||||||
</MkModalWindow>
|
</MkModalWindow>
|
||||||
</div>
|
</div>
|
||||||
@ -54,6 +54,7 @@ const isDeleted = ref();
|
|||||||
const reactions = ref([] as NoteReaction[]);
|
const reactions = ref([] as NoteReaction[]);
|
||||||
const users = ref([] as UserLite[]);
|
const users = ref([] as UserLite[]);
|
||||||
const tes = ref([] as reactionUsers);
|
const tes = ref([] as reactionUsers);
|
||||||
|
const fetching = ref(true);
|
||||||
|
|
||||||
const initialReactions = new Set(Object.keys(props.note.reactions));
|
const initialReactions = new Set(Object.keys(props.note.reactions));
|
||||||
|
|
||||||
@ -62,6 +63,7 @@ onMounted(async () => {
|
|||||||
noteId: props.note.id,
|
noteId: props.note.id,
|
||||||
limit: 100,
|
limit: 100,
|
||||||
});
|
});
|
||||||
|
fetching.value = false;
|
||||||
|
|
||||||
for (const [reaction, count] of Object.entries(props.note.reactions)) {
|
for (const [reaction, count] of Object.entries(props.note.reactions)) {
|
||||||
const users = await os.apiGet('notes/reactions', {
|
const users = await os.apiGet('notes/reactions', {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user