From 7259600b5c19707aa4fd5a0bb7d1d9728e7b7ac2 Mon Sep 17 00:00:00 2001
From: Kirill Vergun <647149+o-nix@users.noreply.github.com>
Date: Fri, 20 Feb 2026 20:34:11 +0100
Subject: [PATCH 1/2] Fix translation key for exit status tooltip
---
webview-ui/src/components/chat/CommandExecution.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/webview-ui/src/components/chat/CommandExecution.tsx b/webview-ui/src/components/chat/CommandExecution.tsx
index af1d72c6a54..f5e2c9420b6 100644
--- a/webview-ui/src/components/chat/CommandExecution.tsx
+++ b/webview-ui/src/components/chat/CommandExecution.tsx
@@ -154,7 +154,7 @@ export const CommandExecution = ({ executionId, text, icon, title }: CommandExec
{status?.status === "exited" && (
+ content={t("chat:commandExecution.exitStatus", { exitStatus: status.exitCode })}>
Date: Sat, 21 Feb 2026 07:14:40 +0000
Subject: [PATCH 2/2] fix: rename exitStatus interpolation param to exitCode to
match i18n template
---
webview-ui/src/components/chat/CommandExecution.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/webview-ui/src/components/chat/CommandExecution.tsx b/webview-ui/src/components/chat/CommandExecution.tsx
index f5e2c9420b6..a2b7df6b46f 100644
--- a/webview-ui/src/components/chat/CommandExecution.tsx
+++ b/webview-ui/src/components/chat/CommandExecution.tsx
@@ -154,7 +154,7 @@ export const CommandExecution = ({ executionId, text, icon, title }: CommandExec
{status?.status === "exited" && (
+ content={t("chat:commandExecution.exitStatus", { exitCode: status.exitCode })}>