From 5743da3e0d3293b93da7e714374a9291cd92c051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Wed, 4 May 2022 11:48:01 +0200 Subject: [PATCH] :pencil2: Rename arg --- packages/editor-ui/src/components/NodeSettings.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor-ui/src/components/NodeSettings.vue b/packages/editor-ui/src/components/NodeSettings.vue index 65df8ea916..231c8189f0 100644 --- a/packages/editor-ui/src/components/NodeSettings.vue +++ b/packages/editor-ui/src/components/NodeSettings.vue @@ -316,8 +316,8 @@ export default mixins( /** * Check if the node's currently active credential type may be used to make a request with the HTTP Request node v2. */ - checkIfSupportedByHttpRequestNode(activeCredentialType: string) { - const credentialType = this.getCredentialTypeByName(activeCredentialType); + checkIfSupportedByHttpRequestNode(activeCredentialTypeName: string) { + const credentialType = this.getCredentialTypeByName(activeCredentialTypeName); this.isSupportedByHttpRequestNode = ( credentialType.name.slice(0, -4).endsWith('OAuth') ||