mirror of https://github.com/node-red/node-red.git
Fix env autocomplete result if searchKey starts with `${`
parent
0c92332033
commit
90d5776f79
|
|
@ -179,7 +179,7 @@
|
|||
optEl.appendTo(element);
|
||||
}
|
||||
matches.push({
|
||||
value: isSubkey ? val + v + '}' : v,
|
||||
value: isSubkey ? val.substring(0, i + 2) + v + '}' : v,
|
||||
label: element,
|
||||
i: valMatch.index
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue