Skip to content

Commit

Permalink
[bugfix] filter_immune_slices doesn't work (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Sep 15, 2016
1 parent 162b8b0 commit ea55f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caravel/assets/javascripts/dashboard/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function dashboardContainer(dashboardData) {
refreshExcept(sliceId) {
const immune = this.metadata.filter_immune_slices || [];
this.slices.forEach(function (slice) {
if (slice.data.slice_id !== sliceId && immune.indexOf(slice.data.sliceId) === -1) {
if (slice.data.slice_id !== sliceId && immune.indexOf(slice.data.slice_id) === -1) {
slice.render();
}
});
Expand Down

0 comments on commit ea55f29

Please sign in to comment.