diff --git a/src/core/plugins/oas3/components/request-body.jsx b/src/core/plugins/oas3/components/request-body.jsx index 9685d8dd..fb0baab2 100644 --- a/src/core/plugins/oas3/components/request-body.jsx +++ b/src/core/plugins/oas3/components/request-body.jsx @@ -36,7 +36,12 @@ const RequestBody = ({ return null } - if(contentType === "application/octet-stream") { + if( + contentType === "application/octet-stream" + || contentType.indexOf("image/") === 0 + || contentType.indexOf("audio/") === 0 + || contentType.indexOf("video/") === 0 + ) { const Input = getComponent("Input") if(!isExecute) {