Skip to content

Commit

Permalink
fix(issues): issue filter value rewrite based on keys
Browse files Browse the repository at this point in the history
refs #9
  • Loading branch information
ocReaper committed Feb 2, 2016
1 parent b104f7a commit 7298b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/issues/services/issue-filter-service.es6
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

addFilter(filter) {
this.activeFilters.push(filter);
this.activeFilters = _.union(this.activeFilters, [filter]);
}

removeFilter(filter) {
Expand Down

0 comments on commit 7298b82

Please sign in to comment.