Add label to filter editor

This commit is contained in:
Lukas Martinelli
2017-01-09 16:40:09 +01:00
parent ed9b806143
commit d9b458d7fd
2 changed files with 15 additions and 7 deletions

View File

@@ -118,7 +118,6 @@ export default class LayerEditor extends React.Component {
onChange={v => this.changeProperty(null, 'source-layer', v)}
/>
}
{this.props.layer.filter &&
<div style={input.property}>
<FilterEditor
filter={this.props.layer.filter}
@@ -126,7 +125,6 @@ export default class LayerEditor extends React.Component {
onChange={f => this.changeProperty(null, 'filter', f)}
/>
</div>
}
</div>
case 'properties': return <PropertyGroup
layer={this.props.layer}