Clarify steering activity heading

This commit is contained in:
murashit 2026-07-09 07:34:12 +09:00
parent d544791b3a
commit 682a23d712
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ import {
} from "../../domain/thread-stream/semantics/predicates";
import type { ThreadStreamSemanticClassification } from "../../domain/thread-stream/semantics/types";
const STEERING_ACTIVITY_LABEL = "steer";
const STEERING_ACTIVITY_LABEL = "steering";
export interface ThreadStreamItemAnnotations {
editedFiles?: string[];

View file

@ -981,7 +981,7 @@ describe("display block grouping keeps thread stream details subordinate to conv
{
type: "steering",
id: "steer-activity-u2",
label: "steer",
label: "steering",
text: "also check tests",
sourceItemId: "u2",
},

View file

@ -73,7 +73,7 @@ describe("thread stream item renderer decisions", () => {
const element = renderThreadStreamBlockElement(expectPresent(block));
expect(element.querySelector(".codex-panel__detail-header")?.textContent).toBe("steer");
expect(element.querySelector(".codex-panel__detail-header")?.textContent).toBe("steering");
expect(element.querySelector(".codex-panel__stream-summary")?.textContent).toBe("also check tests and keep the summary compact");
});