Skip to content
Snippets Groups Projects
Commit 44419d81 authored by Jonathan Eatherly's avatar Jonathan Eatherly
Browse files

fix multi-select dashboard filter clickthroughs for native query questions

parent 77a262cc
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,13 @@ export function question(cardId, hash = "", query = "") {
}
if (query && typeof query === "object") {
query = Object.entries(query)
.map(kv => kv.map(encodeURIComponent).join("="))
.join("&");
.map(kv => {
if (Array.isArray(kv[1])) {
return kv[1].map(v => `${kv[0]}=${v}`).join('&');
} else {
return kv.map(encodeURIComponent).join("=");
}
}).join("&");
}
if (hash && hash.charAt(0) !== "#") {
hash = "#" + hash;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment