aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-02-09 16:49:21 +0800
committerMistivia <i@mistivia.com>2025-02-09 16:49:21 +0800
commit45337902f925e8d826aae5a2347029ab03753113 (patch)
tree04f48cc61fcc8086d3eb890e1534a6bd289f1452
parentde8814ced2e1624d3b87423a6ac971c12f117921 (diff)
show default cards in search console
-rw-r--r--src/control/search.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/control/search.js b/src/control/search.js
index 8f3fa87..4ebe9bf 100644
--- a/src/control/search.js
+++ b/src/control/search.js
@@ -50,6 +50,8 @@ function doSearch(ver, query) {
showCards();
}
+doSearch(curVer, "");
+
function onPrevPage() {
if (curPage > 0) {
curPage -= 1;
@@ -64,6 +66,7 @@ function onNextPage() {
}
}
+
export {
changeInput,
onPrevPage,