Skip to content
Snippets Groups Projects
Commit 83d74628 authored by Tom Robinson's avatar Tom Robinson Committed by Cam Saül
Browse files

Fix swapped GeoJSON settings. Resolves #3537

parent 2d57e9bd
No related merge requests found
......@@ -59,11 +59,13 @@ If you select `Limit access` for one of your databases, your view will change to
![Table permissions](images/table-permissions.png)
Data access levels for schemas follows the same pattern as for databases:
- **Unrestricted access:** can all tables in this schema, including any tables that might get added in the future.
- **Limited access:** can only access the tables that you explicitly select.
- **No access:** can’t access any tables in this schema.
Lastly, data access levels for tables are almost exactly the same as well:
- **Unrestricted access:** can ask questions about this table and see saved questions and dashboard cards using this table.
- **No access:** can’t ask questions about this table or see saved questions or dashboard cards using this table.
......
......@@ -251,15 +251,15 @@ const EditMap = ({ map, onMapChange, originalMap, geoJson, geoJsonLoading, geoJs
<div>
<SettingContainer description="Which property specifies the region’s identifier?">
<GeoJsonPropertySelect
value={map.region_name}
onChange={(value) => onMapChange({ ...map, "region_name": value })}
value={map.region_key}
onChange={(value) => onMapChange({ ...map, "region_key": value })}
geoJson={geoJson}
/>
</SettingContainer>
<SettingContainer description="Which property specifies the region’s display name?">
<GeoJsonPropertySelect
value={map.region_key}
onChange={(value) => onMapChange({ ...map, "region_key": value })}
value={map.region_name}
onChange={(value) => onMapChange({ ...map, "region_name": value })}
geoJson={geoJson}
/>
</SettingContainer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment