diff --git a/framework/sdk-parent/frontend/src/i18n/lang/en-US.js b/framework/sdk-parent/frontend/src/i18n/lang/en-US.js index 1cce97c119..fd3a874c1c 100644 --- a/framework/sdk-parent/frontend/src/i18n/lang/en-US.js +++ b/framework/sdk-parent/frontend/src/i18n/lang/en-US.js @@ -795,6 +795,7 @@ const message = { api: "Api notification", performance: "Performance notification", notice_count: "Number", + ui: "UI notification" }, integration: { select_defect_platform: @@ -2394,7 +2395,7 @@ const message = { definition: "Api Definition", automation: "Api Automation", report: "Test Report", - ui_automation: "Ui Automation", + ui_automation: "Ui Test", }, ldap: { url: "LDAP URL", diff --git a/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js b/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js index 2798e23478..83783e4259 100644 --- a/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js +++ b/framework/sdk-parent/frontend/src/i18n/lang/zh-CN.js @@ -782,7 +782,7 @@ const message = { api: "接口测试任务通知", performance: "性能测试任务通知", notice_count: "通知数", - ui: "UI自动化消息配置", + ui: "UI测试任务通知", }, integration: { select_defect_platform: "请选择要集成的缺陷管理平台:", @@ -2301,7 +2301,7 @@ const message = { definition: "接口定义", automation: "接口自动化", report: "测试报告", - ui_automation: "UI自动化", + ui_automation: "UI测试", }, ldap: { url: "LDAP地址", diff --git a/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js b/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js index 2602f8e7eb..61a1ee4371 100644 --- a/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js +++ b/framework/sdk-parent/frontend/src/i18n/lang/zh-TW.js @@ -781,6 +781,7 @@ const message = { api: "接口測試任務通知", performance: "性能測試任務通知", notice_count: "通知數", + ui: "UI测试任务通知" }, integration: { select_defect_platform: "請選擇要集成的缺陷管理平臺:", @@ -2299,7 +2300,7 @@ const message = { definition: "接口定義", automation: "接口自動化", report: "測試報告", - ui_automation: "UI自動化", + ui_automation: "UI測試", }, ldap: { url: "LDAP地址", diff --git a/project-management/frontend/src/business/menu/notification/ui/UiAutomationNotification.vue b/project-management/frontend/src/business/menu/notification/ui/UiAutomationNotification.vue index c5fc62802a..52b1adc827 100644 --- a/project-management/frontend/src/business/menu/notification/ui/UiAutomationNotification.vue +++ b/project-management/frontend/src/business/menu/notification/ui/UiAutomationNotification.vue @@ -260,8 +260,10 @@ export default { switch (row.event) { case "CREATE": receiverOptions.unshift({id: 'CREATOR', name: this.$t('commons.create_user')}); - if (i2 < 0) { - row.userIds.unshift('CREATOR'); + if (row.isSet) { + if (i2 < 0) { + row.userIds.unshift('CREATOR'); + } } break; case "UPDATE":