Commit 4a6fea4b authored by code1x1's avatar code1x1
Browse files

Fix response type string in javascript mustache template

1 merge request!10916Fix response type string in javascript mustache template ISSUE #10833
Pipeline #586 failed with stages
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -519,7 +519,7 @@
if (returnType === 'Blob') {
request.responseType('blob');
} else if (returnType === 'String') {
request.responseType('string');
request.responseType('text');
}
// Attach previously saved cookies, if enabled
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment