fix: crawl options max length can not set 0 (#7758)

Co-authored-by: Yi <yxiaoisme@gmail.com>
This commit is contained in:
Joel
2024-08-28 17:16:07 +08:00
committed by GitHub
parent 3a071b8db9
commit 7541a492b7
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ type Props = {
isNumber?: boolean
}
const MIN_VALUE = 1
const MIN_VALUE = 0
const Input: FC<Props> = ({
value,