fix(response-body): remove download button when content is empty (#8579)
Co-authored-by: Vladimír Gorej <vladimir.gorej@gmail.com>
This commit is contained in:
committed by
GitHub
parent
043d5ea455
commit
cdfc4de43e
@@ -59,11 +59,13 @@ export default class ResponseBody extends React.PureComponent {
|
||||
url = url || ""
|
||||
|
||||
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"]))) {
|
||||
(/^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
|
||||
) {
|
||||
// Download
|
||||
|
||||
if ("Blob" in window) {
|
||||
|
||||
Reference in New Issue
Block a user