mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-09 22:33:37 +00:00
fix(web): inline sandbox native state next to status label
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2600eb905d
commit
45c7f2d59f
1 changed files with 5 additions and 5 deletions
|
|
@ -109,12 +109,12 @@ function StatusStrip({ details }: { details: SandboxDetails }) {
|
|||
<span className="flex items-center gap-1.5">
|
||||
<span className={`size-2 rounded-full ${display.dot}`} />
|
||||
<span className={`font-medium ${display.text}`}>{display.label}</span>
|
||||
{showNative && (
|
||||
<span className="font-mono text-xs text-fg-muted">
|
||||
({details.native_state})
|
||||
</span>
|
||||
)}
|
||||
</span>
|
||||
{showNative && (
|
||||
<span className="font-mono text-xs text-fg-muted">
|
||||
native: {details.native_state}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue