Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit c3f23c5

Browse files
committed
fix: show correct status for execute_command UI (Running vs Executed)
EXT-672: The execute_command UI now accurately shows the terminal state: - Shows "Running" when a command is actively executing - Shows "Executed" when the command has completed Added "executed" translation key to all 18 locale files.
1 parent e7965d9 commit c3f23c5

19 files changed

Lines changed: 19 additions & 1 deletion

File tree

webview-ui/src/components/chat/ChatRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export const ChatRowContent = ({
282282
<TerminalSquare className="size-4" aria-label="Terminal icon" />
283283
),
284284
<span style={{ color: normalColor, fontWeight: "bold" }}>
285-
{t("chat:commandExecution.running")}
285+
{isCommandExecuting ? t("chat:commandExecution.running") : t("chat:commandExecution.executed")}
286286
</span>,
287287
]
288288
case "use_mcp_server":

webview-ui/src/i18n/locales/ca/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/de/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/en/chat.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@
250250
"commandExecution": {
251251
"abort": "Abort",
252252
"running": "Running",
253+
"executed": "Executed",
253254
"pid": "PID: {{pid}}",
254255
"exitStatus": "Exited with status {{exitCode}}",
255256
"manageCommands": "Auto-approved commands",

webview-ui/src/i18n/locales/es/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/fr/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/hi/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/id/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/it/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/ja/chat.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)