We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb69900 commit 3c8859cCopy full SHA for 3c8859c
templates/base/http-clients/fetch-http-client.ejs
@@ -121,6 +121,10 @@ export class HttpClient<SecurityDataType = unknown> {
121
property.forEach(element => {
122
append(formData, key, element)
123
})
124
+ } else if (Array.isArray(property)) {
125
+ property.forEach((element) => {
126
+ append(formData, key, element)
127
+ })
128
} else {
129
append(formData, key, property)
130
}
0 commit comments