diff options
Diffstat (limited to 'program')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index be26ee96a..0fd4fdab6 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -510,7 +510,7 @@ select_all: function(filter) for (var n in this.rows) { - if (!filter || this.rows[n][filter]==true) + if (!filter || (this.rows[n] && this.rows[n][filter] == true)) { this.last_selected = n; this.highlight_row(n, true); |