mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 05:27:46 +01:00
Remove key/value from style when editing style results in empty array
This commit is contained in:
parent
8b766777ac
commit
06c63509f7
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ export default class FieldDynamicArray extends React.Component {
|
|||
const values = this.values.slice(0)
|
||||
values.splice(valueIdx, 1)
|
||||
|
||||
this.props.onChange(values)
|
||||
this.props.onChange(values.length > 0 ? values : undefined);
|
||||
}
|
||||
|
||||
render() {
|
||||
|
|
Loading…
Reference in a new issue