fix(response-body): show download button both for non-empty Blob and string responses (#9343)
Co-authored-by: Vladimír Gorej <vladimir.gorej@gmail.com> Refs #9298
This commit is contained in:
@@ -60,11 +60,11 @@ export default class ResponseBody extends React.PureComponent {
|
||||
|
||||
if (
|
||||
(/^application\/octet-stream/i.test(contentType) ||
|
||||
(headers["Content-Disposition"] && /attachment/i.test(headers["Content-Disposition"])) ||
|
||||
(headers["content-disposition"] && /attachment/i.test(headers["content-disposition"])) ||
|
||||
(headers["Content-Description"] && /File Transfer/i.test(headers["Content-Description"])) ||
|
||||
(headers["content-description"] && /File Transfer/i.test(headers["content-description"]))) &&
|
||||
content.size > 0
|
||||
(headers["Content-Disposition"] && /attachment/i.test(headers["Content-Disposition"])) ||
|
||||
(headers["content-disposition"] && /attachment/i.test(headers["content-disposition"])) ||
|
||||
(headers["Content-Description"] && /File Transfer/i.test(headers["Content-Description"])) ||
|
||||
(headers["content-description"] && /File Transfer/i.test(headers["content-description"]))) &&
|
||||
(content.size > 0 || content.length > 0)
|
||||
) {
|
||||
// Download
|
||||
|
||||
|
||||
Reference in New Issue
Block a user