From 788e0dc8511f04ddf96a2208adfb5cbc232dc80e Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Tue, 31 Aug 2021 17:38:54 +0530 Subject: [PATCH] chore: lint --- components/graphql/RequestOptions.vue | 16 ++++++++-------- components/http/Headers.vue | 26 +++++++++++++------------- components/http/Parameters.vue | 24 ++++++++++++------------ 3 files changed, 33 insertions(+), 33 deletions(-) diff --git a/components/graphql/RequestOptions.vue b/components/graphql/RequestOptions.vue index 2a404f1c3..a27716ac8 100644 --- a/components/graphql/RequestOptions.vue +++ b/components/graphql/RequestOptions.vue @@ -209,14 +209,14 @@ :value="header.key" autofocus styles=" - bg-transparent - flex - flex-1 - py-1 - px-4 - truncate - focus:outline-none - " + bg-transparent + flex + flex-1 + py-1 + px-4 + truncate + focus:outline-none + " @input=" updateGQLHeader(index, { key: $event, diff --git a/components/http/Headers.vue b/components/http/Headers.vue index 8fcfe5493..69bc6196c 100644 --- a/components/http/Headers.vue +++ b/components/http/Headers.vue @@ -79,13 +79,13 @@ :value="header.key" autofocus styles=" - bg-transparent - flex - flex-1 - py-1 - px-4 - truncate - " + bg-transparent + flex + flex-1 + py-1 + px-4 + truncate + " :class="{ '!flex flex-1': EXPERIMENTAL_URL_BAR_ENABLED }" @input=" updateHeader(index, { @@ -100,12 +100,12 @@ v-model="header.value" :placeholder="$t('count.value', { count: index + 1 })" styles=" - bg-transparent - flex - flex-1 - py-1 - px-4 - " + bg-transparent + flex + flex-1 + py-1 + px-4 + " @change=" updateHeader(index, { key: header.key, diff --git a/components/http/Parameters.vue b/components/http/Parameters.vue index 01a5f962c..bb1fc8a9c 100644 --- a/components/http/Parameters.vue +++ b/components/http/Parameters.vue @@ -77,12 +77,12 @@ v-model="param.key" :placeholder="$t('count.parameter', { count: index + 1 })" styles=" - bg-transparent - flex - flex-1 - py-1 - px-4 - " + bg-transparent + flex + flex-1 + py-1 + px-4 + " @change=" updateParam(index, { key: $event, @@ -111,12 +111,12 @@ v-model="param.value" :placeholder="$t('count.value', { count: index + 1 })" styles=" - bg-transparent - flex - flex-1 - py-1 - px-4 - " + bg-transparent + flex + flex-1 + py-1 + px-4 + " @change=" updateParam(index, { key: param.key,