diff --git a/src/js/client.js b/src/js/client.js index 19fcb9b4d..64b05eda5 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -1404,7 +1404,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout }; if (search) config.params.search = search; - if (active !== null) config.params.active = active ? 'true' : 'false'; + if (active !== null && typeof active !== 'undefined') config.params.active = active ? 'true' : 'false'; get('/api/v1/users', config, function (error, data, status) { if (error) return callback(error);