Browse Source

show default cards in search console

Mistivia 1 month ago
parent
commit
45337902f9
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/control/search.js

+ 3 - 0
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,