diff --git a/src/locales/lang/en_US.js b/src/locales/lang/en_US.js
index 4787c860..8f341203 100644
--- a/src/locales/lang/en_US.js
+++ b/src/locales/lang/en_US.js
@@ -508,6 +508,7 @@ const jobsTS = {
},
addCron: 'Add a timed task',
whatCron: 'What is a Cron expression?',
+ cronNoNext: "N/A",
cronInfo: {
one: '* The first bit, indicating seconds, value range: 0-59',
two: '* The second bit, indicating minutes, value range: 0-59',
diff --git a/src/locales/lang/ja_JP.js b/src/locales/lang/ja_JP.js
index a8edd7d6..4f879064 100644
--- a/src/locales/lang/ja_JP.js
+++ b/src/locales/lang/ja_JP.js
@@ -447,6 +447,7 @@ const jobsTS = {
},
addCron: '添加定时任务',
whatCron: '什么是Cron表达式?',
+ cronNoNext: "N/A",
cronInfo: {
one: '* 第一位,表示秒,取值 0-59',
two: '* 第二位,表示分,取值 0-59',
diff --git a/src/locales/lang/zh_CN.js b/src/locales/lang/zh_CN.js
index 35df229c..0f11ab92 100644
--- a/src/locales/lang/zh_CN.js
+++ b/src/locales/lang/zh_CN.js
@@ -502,6 +502,7 @@ const jobsTS = {
},
addCron: '添加定时任务',
whatCron: '什么是Cron表达式?',
+ cronNoNext: "N/A",
cronInfo: {
one: '* 第一位,表示秒,取值 0-59',
two: '* 第二位,表示分,取值 0-59',
diff --git a/src/locales/lang/zh_TW.js b/src/locales/lang/zh_TW.js
index 5583cc29..394a0cc6 100644
--- a/src/locales/lang/zh_TW.js
+++ b/src/locales/lang/zh_TW.js
@@ -445,6 +445,7 @@ const jobsTS = {
},
addCron: '新增排程任務',
whatCron: '什麼是Cron表達式?',
+ cronNoNext: "N/A",
cronInfo: {
one: '* 第一位,表示秒,取值 0-59',
two: '* 第二位,表示分,取值 0-59',
diff --git a/src/views/Setting/SysJobs.vue b/src/views/Setting/SysJobs.vue
index 6b979c71..4b7c0249 100644
--- a/src/views/Setting/SysJobs.vue
+++ b/src/views/Setting/SysJobs.vue
@@ -112,7 +112,7 @@ onMounted(() => {
prop="cronNext"
>
- {{ new Date(scope.row['cronNext']) }}
+ {{(scope.row["cronNext"] ? new Date(scope.row["cronNext"]) : $t("jobsTS.cronNoNext"))}}