修复 command-run 接口日志绑定

This commit is contained in:
whyour
2025-07-12 20:29:44 +08:00
parent 0587644a6b
commit 50769c43dd
6 changed files with 79 additions and 83 deletions
+1 -1
View File
@@ -573,7 +573,7 @@ export default class CronService {
return typeof doc.status === 'number' &&
[CrontabStatus.queued, CrontabStatus.running].includes(doc.status)
? '运行中...'
: '任务空闲中';
: '日志不存在...';
}
}