Merge branch 'main' into refactor/remove-lodash

This commit is contained in:
Fine0830 2025-03-06 16:52:03 +08:00 committed by GitHub
commit 5bdc77474c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,7 +126,7 @@ limitations under the License. -->
opt.auto = Number(f.value) * 60 * 60 * 1000; opt.auto = Number(f.value) * 60 * 60 * 1000;
} }
if (f.step === TimeType.DAY_TIME) { if (f.step === TimeType.DAY_TIME) {
opt.auto = Number(f.value) * 60 * 60 * 60 * 1000; opt.auto = Number(f.value) * 24 * 60 * 60 * 1000;
} }
} }
const config = JSON.stringify(opt); const config = JSON.stringify(opt);