mirror of
https://github.com/maputnik/editor.git
synced 2026-06-22 15:17:29 +00:00
Merge pull request #724 from orangemug/fix/issue-707
Remove key/value from style when editing style results in empty array
This commit is contained in:
@@ -54,7 +54,7 @@ export default class FieldDynamicArray extends React.Component {
|
|||||||
const values = this.values.slice(0)
|
const values = this.values.slice(0)
|
||||||
values.splice(valueIdx, 1)
|
values.splice(valueIdx, 1)
|
||||||
|
|
||||||
this.props.onChange(values)
|
this.props.onChange(values.length > 0 ? values : undefined);
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
|||||||
Reference in New Issue
Block a user