From 0887345d41ef6703adb506e0d3cf65cd91755ea8 Mon Sep 17 00:00:00 2001 From: 7PH Date: Tue, 21 Nov 2023 16:46:38 +0100 Subject: [PATCH] SONAR-20978 Prevent background task table overflow with long component names --- .../js/apps/background-tasks/components/TaskComponent.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx b/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx index 6234879448d..6e248875d59 100644 --- a/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx +++ b/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx @@ -59,7 +59,9 @@ export default function TaskComponent({ task }: Props) { {task.componentName && ( - {task.componentName} + + {task.componentName} + {task.branch && ( -- 2.39.5