diff --git a/app/src/frontend/fields-config.json b/app/src/frontend/fields-config.json index 3d76c312..60d9986d 100644 --- a/app/src/frontend/fields-config.json +++ b/app/src/frontend/fields-config.json @@ -2,6 +2,7 @@ { "title": "Location", "slug": "location", "help": "https://pages.colouring.london/location", + "intro": "Where is it?", "fields": [ { "title": "Building Name", "slug": "location_name", "type": "text", @@ -72,9 +73,9 @@ ] }, { - "inactive": true, - "title": "Size & Shape", "slug": "form", - "help": "https://pages.colouring.london/form", + "title": "Size & Shape", "slug": "size", + "intro": "How big is it?", + "help": "https://pages.colouring.london/shape", "fields": [ { "title": "Core storeys", "slug": "size_storeys_core", "type": "number", "step": 1, diff --git a/app/src/frontend/legend.js b/app/src/frontend/legend.js index ba4187ca..f7ea0872 100644 --- a/app/src/frontend/legend.js +++ b/app/src/frontend/legend.js @@ -53,10 +53,10 @@ const LEGEND_CONFIG = { ], like: [ { - title: 'Like Me!', + title: 'Which buildings do you like?', slug: 'like', elements: [ - { color: '#f65400', text: 'Liked' }, + { color: '#f65400', text: 'We like these buildings 👍 🎉 +1' }, ] } ] @@ -71,12 +71,13 @@ const Legend = (props) => { return ( - { - CONFIG.map((data_group) => ( - - )) - } +

Click on the map to see more information about a building…

+ { + CONFIG.map((data_group) => ( + + )) + }
); }