What happened
Inline code spans that wrap across a line break are sliced instead of re-decorated. The fragment ending the first line keeps its rounded left cap and then runs to the edge of the column with a flat, cut-off right side; the fragment starting the next line begins with no left cap and no left padding. A single span like location evidence reads as two separate, cut-off pills.
Rendered as it appeared in the chat (the break falls inside the second code span):
...and per-field evidence (`employer type`, `location
evidence`, `experience evidence`) that maps directly...
The reporter will attach the UI screenshot in a follow-up comment.
Impact: cosmetic. Text stays readable, but the chip looks broken at the wrap.
Diagnosis
The inline code rule in apps/web/src/index.css styles the pill but never sets box-decoration-break, so the browser uses the default slice. At a line break the box is fragmented and the border, radius, and horizontal padding are not repeated on the fragments.
At tag v0.0.42 (apps/web/src/index.css:1818), and at v0.0.40 (apps/web/src/index.css:1792) which the reporter is running:
.chat-markdown :not(pre) > code {
border: 1px solid var(--contrast-border);
border-radius: 0.375rem;
background: var(--muted);
padding: 0.1rem 0.35rem;
color: var(--contrast-foreground);
font-size: 0.75rem;
}
Searched v0.0.40, v0.0.41, and v0.0.42 for box-decoration-break: zero occurrences in apps/web/src/index.css. This is not fixed in the newest release.
Suggested fix:
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
Steps to reproduce
-
In any thread, have an assistant message with an inline code span that contains a space and lands on a wrap boundary, for example:
per-field evidence (`employer type`, `location evidence`, `experience evidence`)
-
Use a window or column width where the middle span wraps between "location" and "evidence".
-
The pill is sliced at the break: the first fragment bleeds to the right edge, the next line starts with a cut left side.
Resizing the chat column is enough. Any break that falls inside an inline code span shows the artifact.
Version
Desktop app 0.0.40 on a WSL2 backend (runtime hash 02c38816d0b6722af4ec74c48982ab009586fe7f84274cc757fe8f039c4784db). Checked against v0.0.42: the rule is unchanged, so the newest release still has this.
Environment
Windows 11 + WSL2 (Ubuntu), Node v24.18.0. T3 Code desktop app connected to the WSL-hosted server. Dark theme; the rule is theme-independent.
Evidence
- Stored message text (thread
ae2f6577-eaa1-47fa-9769-7570705c79d6, assistant message at 2026-09-16T06:55:00Z) contains a single inline code span for location evidence. The split is layout, not parsing or streaming; the same message renders this way after the turn settles.
- Compiled CSS in the running runtime (
main-C6VFPY8e.css):
.chat-markdown :not(pre)>code{border:1px solid var(--contrast-border);background:var(--muted);color:var(--contrast-foreground);border-radius:.375rem;padding:.1rem .35rem;font-size:.75rem}
- Source references:
apps/web/src/index.css:1792 (v0.0.40), apps/web/src/index.css:1818 (v0.0.42).
Related issues
Not a duplicate of any of these.
Fix applied or workaround
None applied. Workaround: widen the window until the span no longer wraps.
Filed by
opencode (deepseek-v4.1-flash), running the t3 triage playbook by hand.
What happened
Inline code spans that wrap across a line break are sliced instead of re-decorated. The fragment ending the first line keeps its rounded left cap and then runs to the edge of the column with a flat, cut-off right side; the fragment starting the next line begins with no left cap and no left padding. A single span like
location evidencereads as two separate, cut-off pills.Rendered as it appeared in the chat (the break falls inside the second code span):
The reporter will attach the UI screenshot in a follow-up comment.
Impact: cosmetic. Text stays readable, but the chip looks broken at the wrap.
Diagnosis
The inline code rule in
apps/web/src/index.cssstyles the pill but never setsbox-decoration-break, so the browser uses the defaultslice. At a line break the box is fragmented and the border, radius, and horizontal padding are not repeated on the fragments.At tag
v0.0.42(apps/web/src/index.css:1818), and atv0.0.40(apps/web/src/index.css:1792) which the reporter is running:Searched
v0.0.40,v0.0.41, andv0.0.42forbox-decoration-break: zero occurrences inapps/web/src/index.css. This is not fixed in the newest release.Suggested fix:
Steps to reproduce
In any thread, have an assistant message with an inline code span that contains a space and lands on a wrap boundary, for example:
Use a window or column width where the middle span wraps between "location" and "evidence".
The pill is sliced at the break: the first fragment bleeds to the right edge, the next line starts with a cut left side.
Resizing the chat column is enough. Any break that falls inside an inline code span shows the artifact.
Version
Desktop app 0.0.40 on a WSL2 backend (runtime hash
02c38816d0b6722af4ec74c48982ab009586fe7f84274cc757fe8f039c4784db). Checked againstv0.0.42: the rule is unchanged, so the newest release still has this.Environment
Windows 11 + WSL2 (Ubuntu), Node v24.18.0. T3 Code desktop app connected to the WSL-hosted server. Dark theme; the rule is theme-independent.
Evidence
ae2f6577-eaa1-47fa-9769-7570705c79d6, assistant message at2026-09-16T06:55:00Z) contains a single inline code span forlocation evidence. The split is layout, not parsing or streaming; the same message renders this way after the turn settles.main-C6VFPY8e.css):.chat-markdown :not(pre)>code{border:1px solid var(--contrast-border);background:var(--muted);color:var(--contrast-foreground);border-radius:.375rem;padding:.1rem .35rem;font-size:.75rem}apps/web/src/index.css:1792(v0.0.40),apps/web/src/index.css:1818(v0.0.42).Related issues
Not a duplicate of any of these.
Fix applied or workaround
None applied. Workaround: widen the window until the span no longer wraps.
Filed by
opencode (
deepseek-v4.1-flash), running thet3 triageplaybook by hand.