Commit 8aed1aa6 by Torkel Ödegaard

Fix for cacheTimeout undefined value, #266

parent 2bec41b8
...@@ -225,7 +225,7 @@ function (angular, _, $, config, kbn, moment) { ...@@ -225,7 +225,7 @@ function (angular, _, $, config, kbn, moment) {
} }
}, this); }, this);
} }
else if (value !== null) { else if (value) {
clean_options.push(key + "=" + encodeURIComponent(value)); clean_options.push(key + "=" + encodeURIComponent(value));
} }
}, this); }, this);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment