fix: remove hardcoded max run count and adjust fallback risk warning logic
This commit is contained in:
+1
-1
@@ -450,7 +450,7 @@ function normalizeRunCount(value) {
|
||||
if (!Number.isFinite(numeric)) {
|
||||
return 1;
|
||||
}
|
||||
return Math.min(50, Math.max(1, Math.floor(numeric)));
|
||||
return Math.max(1, Math.floor(numeric));
|
||||
}
|
||||
|
||||
function normalizeAutoRunTimerKind(value = '') {
|
||||
|
||||
Reference in New Issue
Block a user