From 0bdbf03dd17aa45d09a3e443358df2b295f6126f Mon Sep 17 00:00:00 2001 From: Maurice Date: Mon, 25 May 2026 00:44:16 +0200 Subject: [PATCH] fix(places): render line breaks in place descriptions The description field was rendered with remarkGfm only, so single newlines a user typed in the textarea were collapsed by Markdown. Add remarkBreaks (already used for notes) so multiline descriptions keep their line breaks. Closes #957 --- client/src/components/Planner/PlaceInspector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Planner/PlaceInspector.tsx b/client/src/components/Planner/PlaceInspector.tsx index b08c796c..fab40c53 100644 --- a/client/src/components/Planner/PlaceInspector.tsx +++ b/client/src/components/Planner/PlaceInspector.tsx @@ -348,7 +348,7 @@ export default function PlaceInspector({ {/* Description / Summary */} {(place.description || googleDetails?.summary) && (
- {place.description || googleDetails?.summary || ''} + {place.description || googleDetails?.summary || ''}
)}