Skip to content

Commit e147f4e

Browse files
mguetta1sshveta
authored andcommitted
🐛 In the task drawer, show task kind instead of addon (konveyor#2590)
Resolves: https://issues.redhat.com/browse/MTA-6046 Fixes: konveyor#2589 UI tests PR: 1663 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Updated Task Manager task titles: both expanded and collapsed states now display task ID and Kind, replacing the previous Add-on label. * In the collapsed view, app name and priority continue to appear alongside the new fields. * This is a UI text update only; no changes to task behavior, interactions, sorting, or filtering. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: Maayan Hadasi <[email protected]>
1 parent 7e3e096 commit e147f4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/app/components/task-manager/TaskManagerDrawer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ const TaskItem: React.FC<{
152152
}) => {
153153
const starttime = dayjs(task.started ?? task.createTime);
154154
const title = expanded
155-
? `${task.id} (${task.addon})`
156-
: `${task.id} (${task.addon}) - ${task.applicationName} - ${
155+
? `${task.id} (${task.kind})`
156+
: `${task.id} (${task.kind}) - ${task.applicationName} - ${
157157
task.priority ?? 0
158158
}`;
159159

0 commit comments

Comments
 (0)