From 3c6dca4afc76f2c5335b77a4f89208194f89ae1e Mon Sep 17 00:00:00 2001 From: WangXu10 Date: Tue, 19 Sep 2023 18:40:32 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E9=A1=B9=E7=9B=AE=E8=AE=BE=E7=BD=AE):=20ui?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E9=80=9A=E7=9F=A5=E5=88=9B=E5=BB=BA=E4=B8=8D?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=BB=98=E8=AE=A4=E4=BA=BA&=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E4=B8=80=E7=9B=B4=E5=AD=98=E5=9C=A8=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E4=BA=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1030793 --user=王旭 【项目设置】消息设置-UI测试任务通知-UI自动化-事件新建-接收人默认显示创建人 https://www.tapd.cn/55049933/s/1417894 --bug=1030847 --user=王旭 【项目设置】UI测试任务通知-创建通知-新建事件-接口人选择项目成员-保存后仍显示有创建人 https://www.tapd.cn/55049933/s/1417957 --- .../menu/notification/ui/UiAutomationNotification.vue | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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 52b1adc827..e6fae16e96 100644 --- a/project-management/frontend/src/business/menu/notification/ui/UiAutomationNotification.vue +++ b/project-management/frontend/src/business/menu/notification/ui/UiAutomationNotification.vue @@ -259,11 +259,8 @@ export default { switch (row.event) { case "CREATE": - receiverOptions.unshift({id: 'CREATOR', name: this.$t('commons.create_user')}); - if (row.isSet) { - if (i2 < 0) { - row.userIds.unshift('CREATOR'); - } + if (i2 > -1) { + row.userIds.splice(i2, 1); } break; case "UPDATE":