From 855a5134b65817a03bbe3f5c65435f9761cb67af Mon Sep 17 00:00:00 2001 From: Alison Date: Mon, 4 Jun 2018 22:09:00 -0500 Subject: [PATCH 1/2] fix the annoying space error --- client/app/services/query.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/services/query.js b/client/app/services/query.js index fc22ac5e89..a9c0a75904 100644 --- a/client/app/services/query.js +++ b/client/app/services/query.js @@ -138,7 +138,7 @@ class Parameters { const parameterExists = p => contains(parameterNames, p.name); this.query.options.parameters = this.query.options.parameters .filter(parameterExists) - .map(p => new Parameter(Object.assign({queryId: this.query.id}, p))); + .map(p => new Parameter(Object.assign({ queryId: this.query.id }, p))); } initFromQueryString(queryString) { From a3a73d0c4cfd6f584bf2a3aba2fc64b769f7927a Mon Sep 17 00:00:00 2001 From: Alison Date: Mon, 4 Jun 2018 22:18:08 -0500 Subject: [PATCH 2/2] changes pagination alignment for query results to center --- client/app/assets/less/redash/query.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/assets/less/redash/query.less b/client/app/assets/less/redash/query.less index 91aa96e089..57bee3f9bc 100644 --- a/client/app/assets/less/redash/query.less +++ b/client/app/assets/less/redash/query.less @@ -209,7 +209,7 @@ edit-in-place p.editable:hover { } .paginator-container { - text-align: left; + text-align: center; margin-top: 10px; li:first-of-type {