Browse Source

improve filter

Davide Alberani 6 years ago
parent
commit
c23c74062f
1 changed files with 5 additions and 6 deletions
  1. 5 6
      dist/history.html

+ 5 - 6
dist/history.html

@@ -71,13 +71,12 @@ var app = new Vue({
             });
         },
         updateFilter: function() {
+            if (this.show_empty) {
+                this.filtered_history = this.history;
+                return;
+            }
             self = this;
-            this.filtered_history = _.filter(self.history, function(o) {
-                if (self.show_empty) {
-                    return true;
-                }
-                return o.changes;
-            });
+            this.filtered_history = _.filter(self.history, 'changes');
         },
         toggleShowEmpty: function() {
             this.updateFilter();