From df7060b3913ed70b7b1abbad3dec3fcb786853bf Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sat, 6 Jun 2026 18:00:41 +0200 Subject: [PATCH] feat(furni-editor): read-only FurniData.json view (resolved-from-json) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Show the furni's resolved furnidata JSON entry (the editable display name's source of truth) in a collapsible read-only section under Basic Info. Uses furniDataEntry already available client-side — no extra packet. Supersedes the old read-only resolver-preview slice. --- src/components/furni-editor/views/FurniEditorEditView.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/furni-editor/views/FurniEditorEditView.tsx b/src/components/furni-editor/views/FurniEditorEditView.tsx index a40e913..5c7a86b 100644 --- a/src/components/furni-editor/views/FurniEditorEditView.tsx +++ b/src/components/furni-editor/views/FurniEditorEditView.tsx @@ -417,6 +417,13 @@ export const FurniEditorEditView: FC = props => + { furniDataEntry && +
+ Read-only — how this furni resolves from the furnidata JSON (source of truth for the display name). +
{ JSON.stringify(furniDataEntry, null, 2) }
+
+ } +