Skip to content

Commit

Permalink
Fixes issue where clicking on overall stats on the Deployment page wo…
Browse files Browse the repository at this point in the history
…uld bring up a Processes page with an empty results table.
  • Loading branch information
jdrodjpl committed Jan 18, 2025
1 parent 2415dcf commit 2fb1cb0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion install/cws-ui/processes.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,9 @@
var qstring = "?";
if (params != null) {
for (p in params) {
qstring += encodeURI(p) + "=" + encodeURI(params[p]) + "&";
if (params[p]) {
qstring += encodeURI(p) + "=" + encodeURI(params[p]) + "&";
}
}
}
qstring = qstring.substring(0, qstring.length - 1);
Expand Down

0 comments on commit 2fb1cb0

Please sign in to comment.