Finishing agent merge

This commit is contained in:
Dave
2026-02-19 18:05:21 +00:00
parent c94b3d4450
commit 8c2dc9b6a0
8 changed files with 186 additions and 29 deletions

View File

@@ -146,20 +146,41 @@ export function UpcomingPanel({
gap: "8px",
}}
>
<div style={{ fontWeight: 600, fontSize: "0.9em" }}>
{story.name ?? story.story_id}
</div>
{story.name && (
<div style={{ flex: 1 }}>
<div
style={{
fontSize: "0.75em",
color: "#777",
fontFamily: "monospace",
display: "flex",
alignItems: "center",
gap: "8px",
}}
>
{story.story_id}
<div style={{ fontWeight: 600, fontSize: "0.9em" }}>
{story.name ?? story.story_id}
</div>
{story.name && (
<div
style={{
fontSize: "0.75em",
color: "#777",
fontFamily: "monospace",
}}
>
{story.story_id}
</div>
)}
</div>
)}
{story.error && (
<div
style={{
fontSize: "0.8em",
color: "#ff7b72",
marginTop: "4px",
}}
>
{story.error}
</div>
)}
</div>
</div>
))}
</div>