diff --git a/caravel/assets/javascripts/dashboard/Dashboard.jsx b/caravel/assets/javascripts/dashboard/Dashboard.jsx index 9142cbebd08..c95824ac3ea 100644 --- a/caravel/assets/javascripts/dashboard/Dashboard.jsx +++ b/caravel/assets/javascripts/dashboard/Dashboard.jsx @@ -201,6 +201,11 @@ function dashboardContainer(dashboardData) { this.slices.forEach(function (slice) { if (slice.data.slice_id !== sliceId && immune.indexOf(slice.data.slice_id) === -1) { slice.render(); + const sliceSeletor = $(`#${slice.data.token}-cell`); + sliceSeletor.addClass('slice-cell-highlight'); + setTimeout(function () { + sliceSeletor.removeClass('slice-cell-highlight'); + }, 1200); } }); }, diff --git a/caravel/assets/javascripts/dashboard/components/SliceCell.js b/caravel/assets/javascripts/dashboard/components/SliceCell.js index a9e3a184d5b..08aff96a760 100644 --- a/caravel/assets/javascripts/dashboard/components/SliceCell.js +++ b/caravel/assets/javascripts/dashboard/components/SliceCell.js @@ -8,7 +8,7 @@ const propTypes = { function SliceCell({ expandedSlices, removeSlice, slice }) { return ( -