Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/components/PlaintextPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,11 @@ export default function PlaintextPanel({
className={styleConfig.content.base}
style={styleConfig.content.layout}
>
<code className={`${styleConfig.content.code} ${codeClassName || ""}`}>
{content}
</code>
<pre>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add the required changelog entry

This is a user-facing behavior change to how job attempt logs/plaintext are rendered, but the commit only changes PlaintextPanel.tsx. The repo instructions in AGENTS.md require user-facing changes to add an Unreleased CHANGELOG.md entry with the project’s PR reference link convention, so this should be documented before merging.

Useful? React with 👍 / 👎.

<code className={`${styleConfig.content.code} ${codeClassName || ""}`}>
{content}
</code>
</pre>
</div>
</div>
);
Expand Down
Loading