diff --git a/public/js/icinga/loader.js b/public/js/icinga/loader.js index 78968fe5d..46e45f9d0 100644 --- a/public/js/icinga/loader.js +++ b/public/js/icinga/loader.js @@ -302,7 +302,9 @@ setTimeout(function () { // The column may have not been shown before. To make the transition // delay working we have to wait for the column getting rendered - req.$target.addClass('impact'); + if (req.state() === 'pending') { + req.$target.addClass('impact'); + } }, 0); } this.icinga.ui.refreshDebug();