Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
83d74628
Commit
83d74628
authored
8 years ago
by
Tom Robinson
Committed by
Cam Saül
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix swapped GeoJSON settings. Resolves #3537
parent
2d57e9bd
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/administration-guide/05-setting-permissions.md
+2
-0
2 additions, 0 deletions
docs/administration-guide/05-setting-permissions.md
frontend/src/metabase/admin/settings/components/SettingsCustomMaps.jsx
+4
-4
4 additions, 4 deletions
...metabase/admin/settings/components/SettingsCustomMaps.jsx
with
6 additions
and
4 deletions
docs/administration-guide/05-setting-permissions.md
+
2
−
0
View file @
83d74628
...
...
@@ -59,11 +59,13 @@ If you select `Limit access` for one of your databases, your view will change to

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.
...
...
This diff is collapsed.
Click to expand it.
frontend/src/metabase/admin/settings/components/SettingsCustomMaps.jsx
+
4
−
4
View file @
83d74628
...
...
@@ -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
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment