Skip to content

Commit

Permalink
Bug fix: Query view doesn't sync parameters when selecting and deleti…
Browse files Browse the repository at this point in the history
  • Loading branch information
ranbena authored and harveyrendell committed Nov 14, 2019
1 parent 72c6555 commit 4aa4f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/services/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ class Parameters {
const fallback = () => map(this.query.options.parameters, i => i.name);

let parameters = [];
if (this.query.query) {
if (this.query.query !== undefined) {
try {
const parts = Mustache.parse(this.query.query);
parameters = uniq(collectParams(parts));
Expand Down

0 comments on commit 4aa4f38

Please sign in to comment.