diff --git a/ui/lib/jli.js b/ui/lib/jli.js index 059233a2..0e3287f9 100755 --- a/ui/lib/jli.js +++ b/ui/lib/jli.js @@ -1116,7 +1116,7 @@ Object.get = function(obj, name, dfl){ // // NOTE: this will not compact in-place. Array.prototype.compact = function(){ - return list.filter(function(){ return true }) + return this.filter(function(){ return true }) }