From c5de18caae105ee7ef292888341d44159291c049 Mon Sep 17 00:00:00 2001 From: Steve-Mcl Date: Sat, 12 Mar 2022 16:10:36 +0000 Subject: [PATCH] fix: node save broken - Revert last minute code tidy that changed too many `this` to `node` --- .../@node-red/nodes/core/network/21-httprequest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node_modules/@node-red/nodes/core/network/21-httprequest.html b/packages/node_modules/@node-red/nodes/core/network/21-httprequest.html index 8f076d056..9b54f5136 100644 --- a/packages/node_modules/@node-red/nodes/core/network/21-httprequest.html +++ b/packages/node_modules/@node-red/nodes/core/network/21-httprequest.html @@ -411,7 +411,7 @@ const node = this; node.headers = []; headers.each(function(i) { - const header = $(node); + const header = $(this); const keyType = header.find(".node-input-header-name").typedInput('type'); const keyValue = header.find(".node-input-header-name").typedInput('value'); const valueType = header.find(".node-input-header-value").typedInput('type');