From 20bfc02a4ea102a925828a979053de253fc3fae6 Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Wed, 27 Oct 2021 18:17:22 +0530 Subject: [PATCH] fix: disable spellcheck on contenteditable - resolved #1908 --- packages/hoppscotch-app/components/smart/EnvInput.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/hoppscotch-app/components/smart/EnvInput.vue b/packages/hoppscotch-app/components/smart/EnvInput.vue index cfbf6febc..f392bfc32 100644 --- a/packages/hoppscotch-app/components/smart/EnvInput.vue +++ b/packages/hoppscotch-app/components/smart/EnvInput.vue @@ -11,6 +11,7 @@ class="env-input" :class="styles" contenteditable="true" + spellcheck="false" @keydown.enter.prevent="$emit('enter', $event)" @keyup="$emit('keyup', $event)" @click="$emit('click', $event)"