Skip to content

Commit

Permalink
Fix task terminal title changing
Browse files Browse the repository at this point in the history
Don't use server title for task terminals, instead use the provided
widget title

Signed-off-by: Bryan Chen <[email protected]>
  • Loading branch information
bryanchenmchp committed Oct 16, 2023
1 parent e0c82d1 commit f7f97aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/task/src/browser/task-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,8 @@ export class TaskService implements TaskConfigurationClient {
title: taskInfo
? `Task: ${taskInfo.config.label}`
: `Task: #${taskId}`,
destroyTermOnClose: true
destroyTermOnClose: true,
useServerTitle: false
}, {
widgetOptions: { area: 'bottom' },
mode: widgetOpenMode,
Expand Down

0 comments on commit f7f97aa

Please sign in to comment.