修复点击调度任务失败问题

This commit is contained in:
ktianc 2023-12-21 16:27:40 +08:00
parent 1396520ea3
commit a44c7c2bae
2 changed files with 3 additions and 3 deletions

View File

@ -278,9 +278,9 @@ const generateCronExpression = () => {
//
const toRecord = (row: any) => {
if (row) {
push(`/system/record/task?job_id=${row._id}`)
push(`/record/task?job_id=${row._id}`)
} else {
push(`/system/record/task`)
push(`/record/task`)
}
}

View File

@ -11,7 +11,7 @@ from fastapi.security import OAuth2PasswordBearer
"""
系统版本
"""
VERSION = "3.4.1"
VERSION = "3.4.2"
"""安全警告: 不要在生产中打开调试运行!"""
DEBUG = False