From 1be2ad075d2dfaf5de15482d09423e55b4c71499 Mon Sep 17 00:00:00 2001 From: flemming-it Date: Thu, 18 Jun 2026 15:38:23 +0200 Subject: [PATCH] fix(ui): chip wrap below the heatmap shows the norm title too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The compact chips under the heatmap showed only [Tier-Badge] jurabk paragraph (e.g. 'T4 GewO § 14'), which was enough for a methodologically oriented reader but not for someone scanning 'what was that pilot norm about?'. Adds a muted mid-dot + the norm.title after the paragraph, so each chip now reads: T4 · amtlich GewO § 14 · Anzeigepflicht The chips stay clickable, navigation behaviour unchanged. Signed-off-by: flemming-it --- app/lib/pages/heatmap_page.dart | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/lib/pages/heatmap_page.dart b/app/lib/pages/heatmap_page.dart index 20fad48..75524c7 100644 --- a/app/lib/pages/heatmap_page.dart +++ b/app/lib/pages/heatmap_page.dart @@ -112,6 +112,19 @@ class _HeatmapPageState extends State { '${e.norm.jurabk} ${e.norm.paragraph}', style: t.labelLarge, ), + Text( + ' · ', + style: t.labelLarge?.copyWith( + color: ReclaimColors.mute, + ), + ), + Text( + e.norm.title, + style: t.labelLarge?.copyWith( + color: ReclaimColors.mute, + fontWeight: FontWeight.w400, + ), + ), ], ), ),