[bugfix] filter_immune_slices doesn't work (#1110)
This commit is contained in:
parent
a871ee7858
commit
17a317554c
|
|
@ -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();
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue