Skip to content

Commit affa03e

Browse files
committed
xlate arguments now interpolates all values
1 parent d0b7a09 commit affa03e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/selenium-ide/src/neo/IO/SideeX/formatCommand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function xlateArgument(value) {
3131
const regexp = /\$\{(.*?)\}/g
3232
let lastIndex = 0
3333
while ((r2 = regexp.exec(value))) {
34-
if (variables.get(r2[1])) {
34+
if (variables.has(r2[1])) {
3535
if (r2.index - lastIndex > 0) {
3636
parts.push(string(value.substring(lastIndex, r2.index)))
3737
}

0 commit comments

Comments
 (0)