fix(raw-input): allow list parameter for any content type ending with 'json'
This commit is contained in:
@@ -1552,7 +1552,10 @@ export default {
|
|||||||
* serialized by postwoman.
|
* serialized by postwoman.
|
||||||
*/
|
*/
|
||||||
canListParameters() {
|
canListParameters() {
|
||||||
return ["application/json", "application/x-www-form-urlencoded"].includes(this.contentType)
|
return (
|
||||||
|
this.contentType === "application/x-www-form-urlencoded" ||
|
||||||
|
this.contentType.endsWith("json")
|
||||||
|
)
|
||||||
},
|
},
|
||||||
uri: {
|
uri: {
|
||||||
get() {
|
get() {
|
||||||
|
|||||||
Reference in New Issue
Block a user