Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/default/http-client.eta
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export class HttpClient<SecurityDataType = unknown> {
{
...requestParams,
headers: {
...(type ? { "Content-Type": type } : {}),
...(type && type !== ContentType.FormData ? { "Content-Type": type } : {}),
...(requestParams.headers || {}),
},
signal: cancelToken ? this.createAbortSignal(cancelToken) : void 0,
Expand Down
2 changes: 1 addition & 1 deletion templates/modular/http-client.eta
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export class HttpClient<SecurityDataType = unknown> {
{
...requestParams,
headers: {
...(type ? { "Content-Type": type } : {}),
...(type && type !== ContentType.FormData ? { "Content-Type": type } : {}),
Comment thread
js2me marked this conversation as resolved.
...(requestParams.headers || {}),
},
signal: cancelToken ? this.createAbortSignal(cancelToken) : void 0,
Expand Down