change structure of planning section

This commit is contained in:
Mateusz Konieczny 2022-11-08 14:48:16 +01:00
parent 07514e6852
commit bc8ec5d202

View File

@ -270,6 +270,7 @@ const PlanningView: React.FunctionComponent<CategoryViewProps> = (props) => (
verified_count={props.building.verified.planning_in_apa_url}
/>
</DataEntryGroup>
</DataEntryGroup>
<DataEntryGroup name="Other types of zoning" collapsed={false} >
<CheckboxDataEntry
title="Is the building inside a flood zone?"
@ -374,7 +375,6 @@ const PlanningView: React.FunctionComponent<CategoryViewProps> = (props) => (
verified_count={props.building.verified.community_public_ownership}
/>
</DataEntryGroup>
</DataEntryGroup>
</Fragment>
);
const PlanningContainer = withCopyEdit(PlanningView);