diff --git a/packages/dashboard/app/components/ChatView.css b/packages/dashboard/app/components/ChatView.css index d0c00d8ca..432f278cf 100644 --- a/packages/dashboard/app/components/ChatView.css +++ b/packages/dashboard/app/components/ChatView.css @@ -1657,7 +1657,7 @@ opacity: 1; } - /* FN-4352/FN-4387: keep row text clearance aligned to compact secondary delete control (matches base compact clearance). */ + /* FN-4352/FN-4385: keep row text clearance aligned to compact secondary delete control (matches base compact clearance). */ .chat-session-title, .chat-session-preview { padding-right: calc(var(--space-md) * 3); diff --git a/packages/dashboard/app/components/__tests__/ChatView.test.tsx b/packages/dashboard/app/components/__tests__/ChatView.test.tsx index c861b9117..f328b70b6 100644 --- a/packages/dashboard/app/components/__tests__/ChatView.test.tsx +++ b/packages/dashboard/app/components/__tests__/ChatView.test.tsx @@ -2632,7 +2632,7 @@ describe("FN-3911 chat session list layout", () => { expect(previewMatch?.[1]).toMatch(/padding-right:\s*calc\(var\(--space-md\)\s*\*\s*3\)/); }); - it("FN-4387: keeps mobile title/preview clearance matched to compact delete button", () => { + it("FN-4385: keeps mobile title/preview clearance matched to compact delete button", () => { expect(css).toMatch( /@media\s*\(max-width:\s*768px\)[\s\S]*?\.chat-session-title,\s*\.chat-session-preview\s*\{\s*padding-right:\s*calc\(var\(--space-md\)\s*\*\s*3\);\s*\}/, );