Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export class ChatContinueInSessionActionItem extends ActionWidgetDropdownActionV
if (this.location === ActionLocation.Editor) {
const view = h('span.action-widget-delegate-label', [
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The CSS class name action-widget-delegate-label still contains "delegate" but is now used for "Continue in..." text. Consider renaming the CSS class to action-widget-continue-in-label or a more generic name like action-widget-dropdown-label to better reflect its current usage and improve code maintainability.

Suggested change
const view = h('span.action-widget-delegate-label', [
const view = h('span.action-widget-continue-in-label', [

Copilot uses AI. Check for mistakes.
h('span', { className: ThemeIcon.asClassName(Codicon.forward) }),
h('span', [localize('delegate', "Delegate to...")])
h('span', [localize('continueInEllipsis', "Continue in...")])
]);
element.appendChild(view.root);
return null;
Expand Down
Loading