| Index: appengine/swarming/elements/res/imp/common/common-behavior.html
|
| diff --git a/appengine/swarming/elements/res/imp/common/common-behavior.html b/appengine/swarming/elements/res/imp/common/common-behavior.html
|
| index 25c61710200c3d5ec02eda7da52568b6532e597b..76254a1ab1d51fec135169bf19aacd8bab98a269 100644
|
| --- a/appengine/swarming/elements/res/imp/common/common-behavior.html
|
| +++ b/appengine/swarming/elements/res/imp/common/common-behavior.html
|
| @@ -39,7 +39,9 @@
|
| if (busy) {
|
| this.set(busy, true);
|
| }
|
| - url = url + "?" + sk.query.fromParamSet(params);
|
| + if (params) {
|
| + url = url + "?" + sk.query.fromParamSet(params);
|
| + }
|
| sk.request("GET", url, "", headers).then(JSON.parse).then(function(json){
|
| this.set(bindTo, json);
|
| if (busy) {
|
|
|