diff --git a/src/components/furni-editor/views/FurniEditorEditView.tsx b/src/components/furni-editor/views/FurniEditorEditView.tsx index b4b841b..f40775d 100644 --- a/src/components/furni-editor/views/FurniEditorEditView.tsx +++ b/src/components/furni-editor/views/FurniEditorEditView.tsx @@ -38,13 +38,13 @@ const Section: FC = ({ title, children, defaultOpen = true }) =>
- { open &&
{ children }
} + { open &&
{ children }
}
); }; @@ -220,16 +220,16 @@ export const FurniEditorEditView: FC = props => const readonlyClass = 'w-full px-3 py-1.5 text-sm font-mono rounded-lg border border-slate-200 bg-slate-50 text-slate-500 select-all'; return ( - + { /* Header */ } - -
- + +
+
- { furniName || form.publicName || form.itemName } + { furniName || form.publicName || form.itemName } { form.itemName } - + ID { item.id } Sprite { item.spriteId } { item.usageCount } in use @@ -240,29 +240,27 @@ export const FurniEditorEditView: FC = props => { /* Primary edit surface: furnidata display name + description (server-authoritative, live) */ } -
-
+
+
Display name & description LIVE { (furniName !== String(furniDataEntry?.name ?? '') || furniDescription !== String(furniDataEntry?.description ?? '')) && Unsaved }
-
- -
- - setFurniName(e.target.value) } maxLength={ 256 } /> -
-
- -