Skip to content

Commit 58ddc5f

Browse files
committed
auto push
1 parent ddcbf88 commit 58ddc5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/Home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function updateArticle() {
1616
break
1717
}
1818
let article = articles[i]
19-
if((route.query.tags == null || article.tags.includes(route.query.tag as string)) &&
19+
if((route.query.tag == null || article.tags.includes(route.query.tag as string)) &&
2020
(route.query.search == null || article.title.indexOf(route.query.search as string) >= 0)) {
2121
articleFilter.push(article)
2222
}

0 commit comments

Comments
 (0)