セミコロン抜けを修正

This commit is contained in:
GrapeApple0 2023-10-24 05:38:41 +00:00
parent b09863eb65
commit 48687765f6
1 changed files with 1 additions and 1 deletions

View File

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