mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
🐛 Fix bug that array elements larger than 10 could not be removed
This commit is contained in:
parent
3580ea0e2e
commit
419af0a5fd
|
@ -355,7 +355,7 @@ export default mixins(
|
|||
|
||||
// Check if the path is supposed to change an array and if so get
|
||||
// the needed data like path and index
|
||||
const parameterPathArray = parameterPath.match(/(.*)\[(\d)\]$/);
|
||||
const parameterPathArray = parameterPath.match(/(.*)\[(\d+)\]$/);
|
||||
|
||||
// Apply the new value
|
||||
if (parameterData.value === undefined && parameterPathArray !== null) {
|
||||
|
|
Loading…
Reference in a new issue