fix(observer): use lifecycle item title as verb instead of hardcoded "Status" (#1709)

This commit is contained in:
Will Pfleger
2026-07-10 10:52:59 -04:00
committed by GitHub
parent a088822b5b
commit 95bc640a53
2 changed files with 3 additions and 3 deletions
@@ -121,9 +121,9 @@ export function LifecycleActivity(props: ActivityRenderClassItemProps) {
return (
<ActivityRow testId="transcript-lifecycle-item" title={timestampTitle}>
<ActivityRowLabel
object={[props.item.title, props.item.text].filter(Boolean).join(" · ")}
object={props.item.text || undefined}
openToneScope="none"
verb="Status"
verb={props.item.title}
/>
</ActivityRow>
);
@@ -585,7 +585,7 @@ test.describe("observer feed screenshots", () => {
},
]);
await expect(feedPanel.getByText("Commands")).toBeVisible({
await expect(feedPanel.getByText("Commands", { exact: true })).toBeVisible({
timeout: 5_000,
});
await settleAnimations(feedPanel);