mirror of
https://github.com/node-red/node-red.git
synced 2025-12-27 15:34:26 +01:00
Fix env autocomplete result if searchKey starts with ${
This commit is contained in:
@@ -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
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user