diff --git a/pages/index.vue b/pages/index.vue index 63dad1bb1..2af4958e2 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -223,7 +223,7 @@
  • - + {{ $t("raw_input") }} @@ -1432,8 +1432,8 @@ export default { ]) }, }, - contentType(val) { - this.rawInput = !this.knownContentTypes.includes(val) + canListParameters(canToggleRaw) { + this.rawInput = !canToggleRaw }, rawInput(status) { if (status && this.rawParams === "") { @@ -1532,6 +1532,9 @@ export default { "text/html", "text/plain", ], + canListParameters() { + return this.contentType === "application/x-www-form-urlencoded" + }, uri: { get() { return this.$store.state.request.uri ? this.$store.state.request.uri : this.url + this.path