[hotfix] filter_immune_slices fix

This commit is contained in:
Maxime Beauchemin 2016-04-27 13:41:06 -07:00
parent b634d03ac3
commit 89d1a77281
1 changed files with 1 additions and 1 deletions

View File

@ -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();