Skip to content

Commit

Permalink
provider keyboard users with hover actions (microsoft#213077)
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge authored and mustard-mh committed May 22, 2024
1 parent f7990e6 commit 454ed8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/chat/browser/chatListRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export class ChatListItemRenderer extends Disposable implements ITreeRenderer<Ch
if (ev.equals(KeyCode.Space) || ev.equals(KeyCode.Enter)) {
const content = hoverContent();
if (content) {
this.hoverService.showHover({ content, target: user, trapFocus: true }, true);
this.hoverService.showHover({ content, target: user, trapFocus: true, actions: hoverOptions.actions }, true);
}
} else if (ev.equals(KeyCode.Escape)) {
this.hoverService.hideHover();
Expand Down

0 comments on commit 454ed8e

Please sign in to comment.