mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
👕 Fix lint issue
This commit is contained in:
parent
6b2dc25059
commit
9392b94e40
|
@ -228,9 +228,9 @@ export default mixins(
|
||||||
const currentNodeParameters = this.$store.getters.activeNode.parameters;
|
const currentNodeParameters = this.$store.getters.activeNode.parameters;
|
||||||
const resolvedNodeParameters = this.getResolveNodeParameters(currentNodeParameters);
|
const resolvedNodeParameters = this.getResolveNodeParameters(currentNodeParameters);
|
||||||
|
|
||||||
let returnValues: string[] = [];
|
const returnValues: string[] = [];
|
||||||
for (const parameterPath of loadOptionsDependsOn) {
|
for (const parameterPath of loadOptionsDependsOn) {
|
||||||
returnValues.push(get(resolvedNodeParameters, parameterPath));
|
returnValues.push(get(resolvedNodeParameters, parameterPath) as string);
|
||||||
}
|
}
|
||||||
|
|
||||||
return returnValues.join('|');
|
return returnValues.join('|');
|
||||||
|
|
Loading…
Reference in a new issue