diff --git a/CHANGELOG.md b/CHANGELOG.md index 421bdd8be..f103eba08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The chat composer shrinks with its pane, so the send button stays reachable. It sat outside the layout's clip below a 1014px viewport with the navigation expanded, and on any phone 402 CSS px or narrower. - The channel and status pane heading truncates with an ellipsis and carries its full text in a tooltip. A long title previously ran past the panel edge, cut mid-glyph with nothing to signal it. - The Chats page shows one pane at a time from 769px to 888px with the navigation expanded, where two panes left the room narrower than the composer and pushed the send button out of the panel. The message field now keeps a floor rather than shrinking to nothing. +- The reply banner's quoted name truncates with an ellipsis, and a location message's map preview is bounded by its bubble. Both previously painted outside the chat panel when the room was narrow. ## [0.23.0] - 2026-08-20 diff --git a/dashboard/src/components/chats/ChatThread.tsx b/dashboard/src/components/chats/ChatThread.tsx index a22036e42..8fb71abd0 100644 --- a/dashboard/src/components/chats/ChatThread.tsx +++ b/dashboard/src/components/chats/ChatThread.tsx @@ -186,14 +186,7 @@ function ChatThread({ const thumb = msg.body && msg.body.length > 100 ? `data:image/jpeg;base64,${msg.body}` : ''; return (