代入ミスを修正

This commit is contained in:
GrapeApple0 2023-10-28 00:20:03 +09:00 committed by GitHub
parent 48687765f6
commit 474f8926fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -522,8 +522,7 @@ function loadQuotes() {
noteId: appearNote.id,
limit: 30,
}).then(res => {
res.filter(item => item.renoteId != null);
quotes.value = res;
quotes.value = res.filter(item => item.renoteId != null);
});
}