Skip to content

Commit

Permalink
[hotfix] filter_immune_slices fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Apr 27, 2016
1 parent b634d03 commit 89d1a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caravel/assets/javascripts/dashboard.js
Expand Up @@ -94,7 +94,7 @@ var Dashboard = function (dashboardData) {
fetchAndRender();
},
refreshExcept: function (slice_id) {
var immune = this.metadata.filter_immune_slice || [];
var immune = this.metadata.filter_immune_slices || [];
this.slices.forEach(function (slice) {
if (slice.data.slice_id !== slice_id && immune.indexOf(slice.data.slice_id) === -1) {
slice.render();
Expand Down

0 comments on commit 89d1a77

Please sign in to comment.