zen: display session in usage

This commit is contained in:
Frank 2026-02-22 18:48:49 -05:00
commit 5596775c35
18 changed files with 19 additions and 0 deletions

View file

@ -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>
)
}}