let a = {
uPSSecurity: {
usernameToken: {
username,
password: password,
},
},
};
Gives the error "Record type is not allowed".
This works, however:
let a = {
uPSSecurity: {
usernameToken: {
username,
password: "a",
},
},
};
More info: this works
let a = {
uPSSecurity: {
usernameToken: {{
username,
password: password,
}},
},
};
I think it's the old "is this a block, or is it a record, or is it an object" issue
can't repro in master
Most helpful comment
More info: this works
I think it's the old "is this a block, or is it a record, or is it an object" issue