diff --git a/backend/src/main/resources/i18n/messages_en_US.properties b/backend/src/main/resources/i18n/messages_en_US.properties
index a9be69b2aa..145e7904ab 100644
--- a/backend/src/main/resources/i18n/messages_en_US.properties
+++ b/backend/src/main/resources/i18n/messages_en_US.properties
@@ -154,4 +154,5 @@ quota_duration_excess_organization=The stress test duration exceeds the organiza
email_subject=Metersphere timing task result notification
import_xmind_count_error=The number of use cases imported into the mind map cannot exceed 500
-import_xmind_not_found=Test case not found
\ No newline at end of file
+import_xmind_not_found=Test case not found
+license_valid_license_error=Authorization authentication failed
diff --git a/backend/src/main/resources/i18n/messages_zh_CN.properties b/backend/src/main/resources/i18n/messages_zh_CN.properties
index 87ed767fb7..7836a2ba48 100644
--- a/backend/src/main/resources/i18n/messages_zh_CN.properties
+++ b/backend/src/main/resources/i18n/messages_zh_CN.properties
@@ -153,6 +153,7 @@ quota_duration_excess_workspace=压测时长超过工作空间限额
quota_duration_excess_organization=压测时长超过组织限额
email_subject=MeterSphere定时任务结果通知
import_xmind_count_error=思维导图导入用例数量不能超过 500 条
+license_valid_license_error=授权认证失败
import_xmind_not_found=未找到测试用例
diff --git a/frontend/src/business/components/api/test/model/ScenarioModel.js b/frontend/src/business/components/api/test/model/ScenarioModel.js
index 0b27fcdf8d..f7c5e99fcc 100644
--- a/frontend/src/business/components/api/test/model/ScenarioModel.js
+++ b/frontend/src/business/components/api/test/model/ScenarioModel.js
@@ -858,7 +858,7 @@ export class Controller extends BaseConfig {
super();
this.type = type
options.id = options.id || uuid();
- options.enable = options.enable || true;
+ options.enable = options.enable === undefined ? true : options.enable;
}
}
@@ -896,7 +896,7 @@ export class Timer extends BaseConfig {
super();
this.type = type;
options.id = options.id || uuid();
- options.enable = options.enable || true;
+ options.enable = options.enable === undefined ? true : options.enable;
}
}
diff --git a/frontend/src/business/components/common/components/MsScheduleConfig.vue b/frontend/src/business/components/common/components/MsScheduleConfig.vue
index fe55e28700..e78c3f3a38 100644
--- a/frontend/src/business/components/common/components/MsScheduleConfig.vue
+++ b/frontend/src/business/components/common/components/MsScheduleConfig.vue
@@ -6,7 +6,8 @@
SCHEDULER
-
@@ -22,90 +23,108 @@