diff --git a/packages/demo/src/App.tsx b/packages/demo/src/App.tsx index 1e7db076f47c67a3419447e79fa87289a27c1d9b_cGFja2FnZXMvZGVtby9zcmMvQXBwLnRzeA==..8e3e1997aa98813f263153c0258243e157bfe444_cGFja2FnZXMvZGVtby9zcmMvQXBwLnRzeA== 100644 --- a/packages/demo/src/App.tsx +++ b/packages/demo/src/App.tsx @@ -26,4 +26,6 @@ export const MuseumShow = (props: ShowProps) => ( <Show {...props}> <SimpleShowLayout> + <TextField source="id" /> + <TextField source="name" /> <TextField source="postal_address" /> @@ -29,8 +31,4 @@ <TextField source="postal_address" /> - <NumberField source="longitude" /> - <NumberField source="latitude" /> - <TextField source="name" /> - <TextField source="id" /> <ReferenceField label="City" link="show" reference="City" source="is_in"> <TextField source="name" /> </ReferenceField> @@ -34,6 +32,8 @@ <ReferenceField label="City" link="show" reference="City" source="is_in"> <TextField source="name" /> </ReferenceField> + <NumberField source="longitude" /> + <NumberField source="latitude" /> </SimpleShowLayout> </Show> );