From 2d89b6fc27681e4b931a53cac869aafe7bc53a2e Mon Sep 17 00:00:00 2001 From: Stephanie Frankian Date: Tue, 27 Aug 2019 17:45:00 -0400 Subject: [PATCH 1/4] Initialize .editorconfig --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..cee0e62ec --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# http://editorconfig.org + +root = true + +[*] +indent_size = 2 +indent_style = space +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true From be044dbcce94726cac234ede47671457c3c311f3 Mon Sep 17 00:00:00 2001 From: Stephanie Frankian Date: Tue, 27 Aug 2019 17:45:15 -0400 Subject: [PATCH 2/4] Remove .editorconfig from gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8c6652cb0..0a9095b32 100644 --- a/.gitignore +++ b/.gitignore @@ -79,7 +79,6 @@ dist # IDE / Editor .idea -.editorconfig # Service worker sw.* From acedaf27d9591cef0c9a0f930ea3294bd45c05e4 Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Wed, 28 Aug 2019 17:15:11 +0530 Subject: [PATCH 3/4] :art: Fixed minor UI glitch --- README.md | 12 ++++++------ assets/css/styles.scss | 4 ++++ package-lock.json | 5 +++++ pages/index.vue | 2 +- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 515307816..45d1bb115 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,11 @@ When I wrote this, only God and I understood what I was doing. Now, only God kno :zap: **Real-time**: Send requests and get/copy responses right away! **Methods:** - - GET - Retrieve information about the REST API resource - - POST - Create a REST API resource - - PUT - Update a REST API resource - - DELETE - Delete a REST API resource or related component - - OPTIONS - Describe the communication options for the target resource. + - `GET` - Retrieve information about the REST API resource + - `POST` - Create a REST API resource + - `PUT` - Update a REST API resource + - `DELETE` - Delete a REST API resource or related component + - `OPTIONS` - Describe the communication options for the target resource. _History entries are synced with local session storage_ @@ -86,7 +86,7 @@ _Customized themes are also synced with local session storage_ _HTML responses have "Preview HTML" feature_ -:: **History**: Request entries are synced with local session storage to reuse with a single click +:alarm_clock: **History**: Request entries are synced with local session storage to reuse with a single click **Fields** - Timestamp diff --git a/assets/css/styles.scss b/assets/css/styles.scss index 9c7a5de8a..76364d5f8 100644 --- a/assets/css/styles.scss +++ b/assets/css/styles.scss @@ -304,6 +304,10 @@ ol li { background-color: #676767; } +.virtual-list::-webkit-scrollbar { + width: 0; +} + fieldset#history { .method-list-item { position: relative; diff --git a/package-lock.json b/package-lock.json index a4a37c695..23c80fb45 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9997,6 +9997,11 @@ "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==" }, + "vue-virtual-scroll-list": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/vue-virtual-scroll-list/-/vue-virtual-scroll-list-1.4.2.tgz", + "integrity": "sha512-jcXl1cYDxGZX+aF9vsUauXWnUkXm8oQxnvLTJ8UMTmMxwzbmlHX7vs0xGDdEej91vJpBNrdNNseWPxboTvI+UA==" + }, "vuex": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.1.1.tgz", diff --git a/pages/index.vue b/pages/index.vue index 86960e0c5..6bac5bc23 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -191,7 +191,7 @@ - +
  • From 6bf8a6cbb30d4c7dfbfba059452cc77e3201b6fc Mon Sep 17 00:00:00 2001 From: Stephanie Frankian Date: Wed, 28 Aug 2019 08:18:56 -0400 Subject: [PATCH 4/4] Fix typo. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index cee0e62ec..630e82e79 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# http://editorconfig.org +# https://editorconfig.org root = true