mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -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('|');
|
||||||
|
|||||||
Reference in New Issue
Block a user