diff --git a/frontend/src/views/project-management/messageManagement/components/messageList.vue b/frontend/src/views/project-management/messageManagement/components/messageList.vue index 43fb5e84c8..1b68f81077 100644 --- a/frontend/src/views/project-management/messageManagement/components/messageList.vue +++ b/frontend/src/views/project-management/messageManagement/components/messageList.vue @@ -109,8 +109,8 @@ v-xpack type="button" @click="editRobot(record, dataIndex as string)" - >{{ t('common.setting') }} + >{{ t('common.setting') }} + @@ -225,6 +225,7 @@ name: string; rowspan?: number; projectRobotConfigMap: Record; + [key: string]: any; } @@ -343,6 +344,10 @@ // 缺陷同步任务, 只显示操作人 options = options.filter((e) => !['CREATE_USER', 'FOLLOW_PEOPLE', 'HANDLE_USER'].includes(e.id)); } + if (taskType.indexOf('BUG') === -1) { + // 非缺陷任务,不显示处理人 + options = options.filter((e) => !['HANDLE_USER'].includes(e.id)); + } return options; } @@ -445,6 +450,7 @@ background-color: var(--color-text-n9); } } + :deep(.arco-select-view-multiple.arco-select-view-size-medium .arco-select-view-tag) { margin-top: 1px; margin-bottom: 1px;