mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 05:22:13 +08:00
fix: 【数据源】API 数据源的查询超时时间不设上限
This commit is contained in:
@@ -127,7 +127,7 @@ const isNumber = (rule, value, callback) => {
|
||||
callback(new Error(t('datasource.please_input_query_timeout')))
|
||||
return
|
||||
}
|
||||
if (value <= 0 || value > 300) {
|
||||
if (value <= 0) {
|
||||
callback(new Error(t('datasource.please_input_query_timeout')))
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user