diff --git a/app/src/frontend/building/data-containers/community.tsx b/app/src/frontend/building/data-containers/community.tsx index 12abbb3a..c1be116d 100644 --- a/app/src/frontend/building/data-containers/community.tsx +++ b/app/src/frontend/building/data-containers/community.tsx @@ -4,6 +4,7 @@ import '../../map/map-button.css'; import withCopyEdit from '../data-container'; import UserOpinionEntry from '../data-components/user-opinion-data-entry'; import { MultiSelectDataEntry } from '../data-components/multi-select-data-entry'; +import { DataEntryGroup } from '../data-components/data-entry-group'; import { CategoryViewProps } from './category-view-props'; import InfoBox from '../../components/info-box'; @@ -43,9 +44,10 @@ const CommunityView: React.FunctionComponent = (props) => { const { darkLightTheme } = useDisplayPreferences(); const worthKeepingReasonsNonEmpty = Object.values(props.building.community_type_worth_keeping_reasons ?? {}).some(x => x); return <> +
- Can you share your opinion on how well the building works? + Here we are collecting data on how well you think specific types of building work (rather than individual buildings), to help ensure we save and reuse all useful buildings and to help improve urban design quality in future. { /* @@ -130,10 +132,12 @@ const CommunityView: React.FunctionComponent = (props) => { - You can click and colour any other building on the map as well.
- - Can you help add information on community use of buildings? +
+ + + Here we are collecting information on the location of buildings used for community activities so we can track loss of/additions to community space over time + = (props) => { user_verified_as={props.user_verified.community_public_ownership_sources} verified_count={props.building.verified.community_public_ownership_sources} /> + }; const CommunityContainer = withCopyEdit(CommunityView);