Commit 6053673
committed
fix(client): restore feed-tabs CSS + MD paragraph separator
Two regressions flagged in code review:
C1 — .feed-tabs/.feed-tab/.feed-tab.active rules were accidentally
deleted alongside the selection-styling cleanup in 170b455. The
HEAD markup in ActivityFeedHeader.tsx still emits those classes
for the All/By Agent toggle, so the tabs were rendering unstyled.
Restored the rules from 62e4b50 as-is.
C2 — The ReactMarkdown `p` renderer emitted a bare fragment, which
caused multi-paragraph messages ("foo\n\nbar") to render as
"foobar" with no separator. Now emits a trailing space so adjacent
paragraphs collapse via white-space:normal into one space between
them, preserving the inline flow.1 parent 11b435f commit 6053673
2 files changed
Lines changed: 29 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
83 | 108 | | |
84 | 109 | | |
85 | 110 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
10 | | - | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
11 | 12 | | |
12 | | - | |
| 13 | + | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
| |||
0 commit comments