fix: remove hardcoded max run count and adjust fallback risk warning logic

This commit is contained in:
QLHazyCoder
2026-04-22 02:10:07 +08:00
parent 3d69413b05
commit c35127c5b7
5 changed files with 196 additions and 12 deletions
+1 -1
View File
@@ -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 = '') {