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 e78990d3b6a498b5dc3ac382c37fd263d552353c Mon Sep 17 00:00:00 2001 From: Alison Date: Tue, 5 Jun 2018 23:05:53 -0500 Subject: [PATCH 2/2] removes menu divider line if archived fixes #319 --- client/app/pages/queries/query.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/pages/queries/query.html b/client/app/pages/queries/query.html index d104c53537..713a65dd62 100644 --- a/client/app/pages/queries/query.html +++ b/client/app/pages/queries/query.html @@ -63,7 +63,7 @@

  • Archive
  • Manage Permissions
  • Unpublish
  • -
  • +
  • Show API Key
  • Query Versions