mirror of
https://github.com/apache/superset.git
synced 2026-04-22 01:24:43 +00:00
[bugfix] filter_immune_slices doesn't work (#1110)
This commit is contained in:
committed by
GitHub
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();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user