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); }