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:
Bryan Helmkamp 2026-05-09 22:11:28 -04:00
parent 2600eb905d
commit 45c7f2d59f
No known key found for this signature in database

View file

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