We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5de6966 commit 10b9990Copy full SHA for 10b9990
1 file changed
src/components/molecules/flow/graph/compute/requestnode.js
@@ -97,6 +97,12 @@ class requestNode extends Node {
97
}
98
99
100
+ if (this.nodeData.headers && this.nodeData.headers.length > 0) {
101
+ this.nodeData.headers.map((pair, index) => {
102
+ headers[pair.name] = pair.value;
103
+ });
104
+ }
105
+
106
const options = {
107
method: restMethod,
108
url: finalUrl,
0 commit comments