Skip to content

feat(renderer): wrap step timeline in details element#11

Merged
Garbee merged 2 commits intomainfrom
copilot/add-details-element-for-timeline
Feb 14, 2026
Merged

feat(renderer): wrap step timeline in details element#11
Garbee merged 2 commits intomainfrom
copilot/add-details-element-for-timeline

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Feb 14, 2026

Step timeline now renders as a collapsible <details> element instead of an always-visible heading, reducing visual clutter in workflow summaries.

Changes

  • Modified generateStepAnnotations() to wrap output in <details>/<summary> tags
  • Updated test expectations for HTML structure

Implementation

-return `\n#### Step Timeline\n\n${annotations.join("\n")}`;
+return `\n<details>\n<summary>Step Timeline</summary>\n\n${annotations.join("\n")}\n</details>`;

Timeline is collapsed by default; users expand it on demand.

Co-authored-by: Garbee <868301+Garbee@users.noreply.github.com>
Copilot AI changed the title [WIP] Add details element for step timeline display feat(renderer): wrap step timeline in details element Feb 14, 2026
Copilot AI requested a review from Garbee February 14, 2026 16:34
@Garbee Garbee marked this pull request as ready for review February 14, 2026 16:38
@Garbee Garbee merged commit 10c2e08 into main Feb 14, 2026
7 checks passed
@Garbee Garbee deleted the copilot/add-details-element-for-timeline branch February 14, 2026 19:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants