mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-17 07:13:45 +01:00
Update src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackEditorWidgetContribution.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -88,8 +88,10 @@ export class AgentFeedbackEditorWidget extends Disposable implements IOverlayWid
|
||||
// Header
|
||||
this._headerNode = $('div.agent-feedback-widget-header');
|
||||
|
||||
// Comment icon
|
||||
this._headerNode.appendChild(renderIcon(Codicon.comment));
|
||||
// Comment icon (decorative, hidden from screen readers)
|
||||
const commentIcon = renderIcon(Codicon.comment);
|
||||
commentIcon.setAttribute('aria-hidden', 'true');
|
||||
this._headerNode.appendChild(commentIcon);
|
||||
|
||||
// Title showing feedback count
|
||||
this._titleNode = $('span.agent-feedback-widget-title');
|
||||
|
||||
Reference in New Issue
Block a user