diff --git a/pages/graphql.vue b/pages/graphql.vue
index 0de838f2b..3c1494463 100644
--- a/pages/graphql.vue
+++ b/pages/graphql.vue
@@ -59,7 +59,7 @@
@change="
$store.commit('setGQLHeaderKey', {
index,
- value: $event.target.value
+ value: $event.target.value
})
"
autofocus
@@ -424,9 +424,9 @@ export default {
this.responseBodyMaxLines = (this.responseBodyMaxLines == Infinity) ? 16 : Infinity;
},
downloadResponse() {
- var dataToWrite = JSON.stringify(this.schemaString, null, 2)
- var file = new Blob([dataToWrite], { type: "application/json" });
- var a = document.createElement("a"),
+ const dataToWrite = JSON.stringify(this.schemaString, null, 2)
+ const file = new Blob([dataToWrite], { type: "application/json" });
+ const a = document.createElement("a"),
url = URL.createObjectURL(file);
a.href = url;
a.download = (
diff --git a/pages/index.vue b/pages/index.vue
index 3f7bf29e6..0774cc8d7 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -109,7 +109,7 @@
-
@@ -248,7 +248,7 @@