diff --git a/frontend/src/Editor/Inspector/Components/Table.jsx b/frontend/src/Editor/Inspector/Components/Table.jsx index 7de1a40106..de275d1895 100644 --- a/frontend/src/Editor/Inspector/Components/Table.jsx +++ b/frontend/src/Editor/Inspector/Components/Table.jsx @@ -131,9 +131,9 @@ class Table extends React.Component { } removeAction = (index) => { - const newValue = actions.value; + const newValue = this.state.component.component.definition.properties.actions.value; newValue.splice(index, 1); - paramUpdated ({name: 'actions'}, 'value', newValue, 'properties'); + this.props.paramUpdated ({name: 'actions'}, 'value', newValue, 'properties'); } onColumnItemChange = (index, e) => {