mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 16:51:20 +01:00
Show text when nested filter
This commit is contained in:
parent
c3417241f1
commit
cb89ca6ef7
1 changed files with 6 additions and 1 deletions
|
@ -87,7 +87,12 @@ export default class CombiningFilterEditor extends React.Component {
|
||||||
|
|
||||||
//TODO: Implement support for nested filter
|
//TODO: Implement support for nested filter
|
||||||
if(hasNestedCombiningFilter(filter)) {
|
if(hasNestedCombiningFilter(filter)) {
|
||||||
return null
|
return <div style={{
|
||||||
|
fontSize: fontSizes[5],
|
||||||
|
color: colors.midgray,
|
||||||
|
}}>
|
||||||
|
Nested filters are not supported.
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
return <div>
|
return <div>
|
||||||
|
|
Loading…
Reference in a new issue