diff --git a/frontend/src/business/components/settings/workspace/components/track/TestPlanTaskNotification.vue b/frontend/src/business/components/settings/workspace/components/track/TestPlanTaskNotification.vue index 94ad94d7ec..c5730934e5 100644 --- a/frontend/src/business/components/settings/workspace/components/track/TestPlanTaskNotification.vue +++ b/frontend/src/business/components/settings/workspace/components/track/TestPlanTaskNotification.vue @@ -359,6 +359,7 @@ export default { let testPlanReceivers = JSON.parse(JSON.stringify(this.testPlanReceiverOptions)); let i = row.userIds.indexOf('FOLLOW_PEOPLE'); let i2 = row.userIds.indexOf('CREATOR'); + let i3 = row.userIds.indexOf('EXECUTOR'); switch (row.event) { case "CREATE": testPlanReceivers.unshift({id: 'EXECUTOR', name: this.$t('test_track.plan_view.executor')}); @@ -375,6 +376,7 @@ export default { case "COMPLETE": testPlanReceivers.unshift({id: 'CREATOR', name: this.$t('commons.create_user')}); testPlanReceivers.unshift({id: 'FOLLOW_PEOPLE', name: this.$t('api_test.automation.follow_people')}); + testPlanReceivers.unshift({id: 'EXECUTOR', name: this.$t('test_track.plan_view.executor')}); if (row.isSet) { if (i2 < 0) { @@ -383,6 +385,9 @@ export default { if (i < 0) { row.userIds.unshift('FOLLOW_PEOPLE'); } + if (i3 < 0) { + row.userIds.unshift('EXECUTOR'); + } } break; default: