diff --git a/client/src/components/run/LaneConsolePane.tsx b/client/src/components/run/LaneConsolePane.tsx index ee91eef..d034531 100644 --- a/client/src/components/run/LaneConsolePane.tsx +++ b/client/src/components/run/LaneConsolePane.tsx @@ -54,6 +54,7 @@ export function LaneConsolePane({ }: LaneConsolePaneProps) { const { t } = useTranslation("run"); const { t: tLanes } = useTranslation("lanes"); + const { t: tCommon } = useTranslation("common"); const [prompt, setPrompt] = useState(""); const [model, setModel] = useState(""); @@ -303,7 +304,20 @@ export function LaneConsolePane({
-

{t("title")}

+
+

{t("title")}

+ {wsConnected ? ( + + + {tCommon("live")} + + ) : ( + + + {tCommon("offline")} + + )} +

{t("subtitle")}