From 942eae98dba2ec281bd00bd9aa26a42623c904af Mon Sep 17 00:00:00 2001 From: Bhanu Prakash Sai Potteri Date: Sat, 23 May 2026 10:45:13 +0530 Subject: [PATCH] Show all configured fields in detail view (was hiding empty ones) --- src/components/DetailViewPanel.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/DetailViewPanel.tsx b/src/components/DetailViewPanel.tsx index 9ceb2ff..fb27bcd 100644 --- a/src/components/DetailViewPanel.tsx +++ b/src/components/DetailViewPanel.tsx @@ -118,9 +118,7 @@ export default function DetailViewPanel({ viewId, instanceId }: Props) { for (const f of fields) { if (sys.has(f.field_key) || SKIP_KEYS.has(f.field_key)) continue; - const v = data[f.field_key]; const g = classify(f.field_key); - if (g !== "hero" && (v == null || v === "")) continue; groups[g].push(f); }