Skip to content
Snippets Groups Projects
Unverified Commit b62009ce authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Hide custom GeoJson settings when they are set by the env var (#19621)

parent 1bf4ae77
No related merge requests found
......@@ -138,6 +138,10 @@ export default class CustomGeoJSONWidget extends Component {
render() {
const { setting } = this.props;
if (!setting.value || setting.is_env_setting) {
return null;
}
return (
<div className="flex-full">
<div className="flex justify-between">
......
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