Skip to content

Commit 89d1a77

Browse files
committedApr 27, 2016
[hotfix] filter_immune_slices fix
1 parent b634d03 commit 89d1a77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎caravel/assets/javascripts/dashboard.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var Dashboard = function (dashboardData) {
9494
fetchAndRender();
9595
},
9696
refreshExcept: function (slice_id) {
97-
var immune = this.metadata.filter_immune_slice || [];
97+
var immune = this.metadata.filter_immune_slices || [];
9898
this.slices.forEach(function (slice) {
9999
if (slice.data.slice_id !== slice_id && immune.indexOf(slice.data.slice_id) === -1) {
100100
slice.render();

0 commit comments

Comments
 (0)
Please sign in to comment.