From 72913ccece0bb7830cf7f82e999124f1ae77a2d2 Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Sat, 20 Feb 2021 15:39:37 +0000 Subject: [PATCH] chore(deps): bump + sort tailwind classes --- components/environments/index.vue | 4 +- components/graphql/field.vue | 4 +- components/graphql/type.vue | 6 +- package-lock.json | 126 +++++++++++++++--------------- package.json | 2 +- 5 files changed, 71 insertions(+), 71 deletions(-) diff --git a/components/environments/index.vue b/components/environments/index.vue index d67522b3d..0c69c274f 100644 --- a/components/environments/index.vue +++ b/components/environments/index.vue @@ -103,8 +103,8 @@ export default { }) }, environments: { - handler(val) { - if (val.length === 0) { + handler({ length }) { + if (length === 0) { this.selectedEnvironmentIndex = -1 this.$emit("use-environment", { environment: this.defaultEnvironment, diff --git a/components/graphql/field.vue b/components/graphql/field.vue index d84965b70..40d86cbc4 100644 --- a/components/graphql/field.vue +++ b/components/graphql/field.vue @@ -23,8 +23,8 @@ {{ $t("deprecated") }}
-
ARGUMENTS:
-
+
ARGUMENTS:
+
{{ field.name }}: diff --git a/components/graphql/type.vue b/components/graphql/type.vue index 6a40387fb..4949e90d2 100644 --- a/components/graphql/type.vue +++ b/components/graphql/type.vue @@ -1,9 +1,9 @@