File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
packages/opencode/src/cli/cmd/tui/routes/session Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { useSync } from "@tui/context/sync"
33import { createMemo , Show } from "solid-js"
44import { useTheme } from "../../context/theme"
55import { useTuiConfig } from "../../context/tui-config"
6- import { InstallationVersion } from "@/installation/version"
6+ import { InstallationChannel , InstallationVersion } from "@/installation/version"
77import { TuiPluginRuntime } from "../../plugin"
88
99import { getScrollAcceleration } from "../../util/scroll"
@@ -62,6 +62,9 @@ export function Sidebar(props: { sessionID: string; overlay?: boolean }) {
6262 < text fg = { theme . text } >
6363 < b > { session ( ) ! . title } </ b >
6464 </ text >
65+ < Show when = { InstallationChannel !== "latest" } >
66+ < text fg = { theme . textMuted } > { props . sessionID } </ text >
67+ </ Show >
6568 < Show when = { session ( ) ! . workspaceID } >
6669 < text fg = { theme . textMuted } >
6770 < span style = { { fg : workspaceStatus ( ) === "connected" ? theme . success : theme . error } } > ●</ span > { " " }
You can’t perform that action at this time.
0 commit comments