Commit 19ff8177 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch '28295-mr-loading-icon' into 'master'

fix MR jobs loading icon visibility

Closes #28295

See merge request !9324
parents 4f405608 229f8068
...@@ -252,7 +252,6 @@ require('./smart_interval'); ...@@ -252,7 +252,6 @@ require('./smart_interval');
$('.ci_widget.ci-error').show(); $('.ci_widget.ci-error').show();
this.setMergeButtonClass('btn-danger'); this.setMergeButtonClass('btn-danger');
} }
this.initMiniPipelineGraph();
}; };
MergeRequestWidget.prototype.showCICoverage = function(coverage) { MergeRequestWidget.prototype.showCICoverage = function(coverage) {
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
* All dropdown events are fired at the .dropdown-menu's parent element. * All dropdown events are fired at the .dropdown-menu's parent element.
*/ */
bindEvents() { bindEvents() {
$(document).on('shown.bs.dropdown', this.container, this.getBuildsList); $(document).off('shown.bs.dropdown', this.container).on('shown.bs.dropdown', this.container, this.getBuildsList);
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment