From 846c1426cf1dbe08f7c65fca06cd7ca1a6b5f4cd Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Sun, 8 Aug 2021 13:16:14 +0530 Subject: [PATCH] fix: proper implementation of isCustomMethod --- components/http/Request.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/components/http/Request.vue b/components/http/Request.vue index afb3ed7f5..4401e9e57 100644 --- a/components/http/Request.vue +++ b/components/http/Request.vue @@ -28,7 +28,7 @@ focus:border-accent focus:outline-none " :value="newMethod" - :readonly="isCustomMethod()" + :readonly="!isCustomMethod" @input="onSelectMethod($event.target.value)" /> @@ -205,6 +205,7 @@