[bugfix] filter_immune_slices doesn't work (#1110)

This commit is contained in:
Maxime Beauchemin 2016-09-14 14:19:37 -07:00 committed by GitHub
parent a871ee7858
commit 17a317554c
1 changed files with 1 additions and 1 deletions

View File

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