From d5ec80d85dc6badfcf9e11682ea36288809ce163 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 15 Dec 2025 02:23:57 +0200 Subject: [PATCH] client/status bar/note info: fix an issue pointed by gemini-code-assist --- apps/client/src/widgets/react/LinkButton.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/client/src/widgets/react/LinkButton.tsx b/apps/client/src/widgets/react/LinkButton.tsx index 95f1a6e89..81b33280a 100644 --- a/apps/client/src/widgets/react/LinkButton.tsx +++ b/apps/client/src/widgets/react/LinkButton.tsx @@ -11,6 +11,12 @@ export default function LinkButton({ onClick, text, triggerCommand }: LinkButton return ( { + if (e.code === "Space") { + onClick?.(); + } + }} onClick={(e) => { e.preventDefault(); onClick?.();