Browse Source

feature: adjust max search level to 5 for autoindex

Signed-off-by: ryjiang <jiangruiyi@gmail.com>
ryjiang 10 months ago
parent
commit
3e1ed3484e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/src/pages/search/SearchParams.tsx

+ 1 - 1
client/src/pages/search/SearchParams.tsx

@@ -247,7 +247,7 @@ const SearchParams: FC<SearchParamsProps> = ({
           key: 'level',
           value: searchParamsForm['level'] ?? 1,
           min: 1,
-          max: 3,
+          max: 5,
           isInt: true,
           required: false,
           type: 'number',