This is an automated email from the ASF dual-hosted git repository.
likyh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new bd03a8e44 fix(config-ui): refactoring missed modifications (#4228)
bd03a8e44 is described below
commit bd03a8e449bb0cd9d03cf25b759c13e3d4155a74
Author: 青湛 <[email protected]>
AuthorDate: Wed Jan 18 15:10:40 2023 +0800
fix(config-ui): refactoring missed modifications (#4228)
---
config-ui/src/pages/pipeline/components/task/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config-ui/src/pages/pipeline/components/task/index.tsx
b/config-ui/src/pages/pipeline/components/task/index.tsx
index 93f3a298d..d24f3ab2f 100644
--- a/config-ui/src/pages/pipeline/components/task/index.tsx
+++ b/config-ui/src/pages/pipeline/components/task/index.tsx
@@ -57,7 +57,7 @@ export const PipelineTask = ({ task }: Props) => {
case ['gitlab'].includes(config.plugin):
name = `${name}:projectId:${options.projectId}`;
break;
- case [Plugins.JIRA, Plugins.Jenkins].includes(config.plugin):
+ case ['jira', 'jenkins'].includes(config.plugin):
name = `${name}:${options.scopeId}`;
break;
}