From b14adc29f521271306970e896c45ffe46ee04848 Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Fri, 20 Mar 2020 19:39:48 +0530 Subject: [PATCH] :bug: Hotfix: Enable RAW body for `JSON` `Content-Type` --- pages/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/index.vue b/pages/index.vue index e59cc6b6..c3bdee4b 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -1544,7 +1544,11 @@ export default { "text/plain", ], canListParameters() { - return this.contentType === "application/x-www-form-urlencoded" + return [ + "application/json", + "application/hal+json", + "application/x-www-form-urlencoded", + ].includes(this.contentType) }, uri: { get() {