mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: Load remote resources even if expressions in non requried parameters resolve (#6987)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
@@ -888,7 +888,8 @@ export default defineComponent({
|
||||
if (
|
||||
this.node === null ||
|
||||
this.hasRemoteMethod === false ||
|
||||
this.remoteParameterOptionsLoading
|
||||
this.remoteParameterOptionsLoading ||
|
||||
!this.parameter
|
||||
) {
|
||||
return;
|
||||
}
|
||||
@@ -900,7 +901,8 @@ export default defineComponent({
|
||||
|
||||
try {
|
||||
const currentNodeParameters = (this.ndvStore.activeNode as INodeUi).parameters;
|
||||
const resolvedNodeParameters = this.resolveParameter(
|
||||
const resolvedNodeParameters = this.resolveRequiredParameters(
|
||||
this.parameter,
|
||||
currentNodeParameters,
|
||||
) as INodeParameters;
|
||||
const loadOptionsMethod = this.getArgument('loadOptionsMethod') as string | undefined;
|
||||
|
||||
Reference in New Issue
Block a user