Skip to content

Commit 9733140

Browse files
committed
feat(ui): include file name in task progress display
Add the file name to the task progress display to provide better context for the user. This helps distinguish between tasks when multiple files are being processed.
1 parent bea720e commit 9733140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/cc/unitmesh/devti/custom/TeamPromptBaseIntention.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class TeamPromptBaseIntention(val intentionConfig: TeamPromptAction, val trySele
6464
}
6565

6666
// display progress like 1/2 in the title
67-
val taskName = "${intentionConfig.actionName} ${index + 1}/$length "
67+
val taskName = "${intentionConfig.actionName} ${index + 1}/$length - ${vfile.name}"
6868
val task: Task.Backgroundable =
6969
TeamPromptExecTask(project, msgs, editor, intentionConfig, element, vfile, taskName)
7070
ProgressManager.getInstance()

0 commit comments

Comments
 (0)