diff options
| author | Frank <[email protected]> | 2026-02-22 18:48:49 -0500 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-02-22 22:19:44 -0500 |
| commit | 5596775c35fbf92b7e83729deed4ec8e286ab3ab (patch) | |
| tree | 5843225d947079447c47044e97120db484e67dd6 /packages/console/app/src/routes | |
| parent | 5712cff5c453a185ac75a160f76ca06135d6ab2d (diff) | |
| download | opencode-5596775c35fbf92b7e83729deed4ec8e286ab3ab.tar.gz opencode-5596775c35fbf92b7e83729deed4ec8e286ab3ab.zip | |
zen: display session in usage
Diffstat (limited to 'packages/console/app/src/routes')
| -rw-r--r-- | packages/console/app/src/routes/workspace/[id]/usage-section.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/usage-section.tsx b/packages/console/app/src/routes/workspace/[id]/usage-section.tsx index 079a27c3c..7b030f4af 100644 --- a/packages/console/app/src/routes/workspace/[id]/usage-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/usage-section.tsx @@ -94,6 +94,7 @@ export function UsageSection() { <th>{i18n.t("workspace.usage.table.input")}</th> <th>{i18n.t("workspace.usage.table.output")}</th> <th>{i18n.t("workspace.usage.table.cost")}</th> + <th>{i18n.t("workspace.usage.table.session")}</th> </tr> </thead> <tbody> @@ -183,6 +184,7 @@ export function UsageSection() { })} </Show> </td> + <td data-slot="usage-session">{usage.sessionID?.slice(-8) ?? "-"}</td> </tr> ) }} |
