fix(FullyAutoAndSemiAutoTools): 解决记录路径排序问题

- 添加时间戳降序排序确保最新记录优先显示
This commit is contained in:
yan
2026-01-18 20:55:09 +08:00
parent 349a5288d5
commit e939903a03

View File

@@ -546,6 +546,7 @@ async function initRun(config_run) {
recordPaths = Array.from(RecordPath.paths);
} catch (e) {
}
recordPaths.sort((a, b) => b.timestamp - a.timestamp)
const timeConfigs = Array.from(timeJson);