Skip to content

Commit

Permalink
Fix name of parameter for unpacking query parameters from URL. Refs #164
Browse files Browse the repository at this point in the history
. (#518)
  • Loading branch information
jezdez authored Aug 21, 2018
1 parent 7bed7b1 commit 37f6b9d
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 @@ -156,7 +156,7 @@ class Parameter {
this.setValue([query[keyStart], query[keyEnd]]);
}
} else {
const key = `p_${this.name}_${this.query.id}`;
const key = `p_${this.name}_${this.queryId}`;
if (has(query, key)) {
this.setValue(query[key]);
}
Expand Down

0 comments on commit 37f6b9d

Please sign in to comment.