Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « pipelines « commit « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52cbe52fa9b33ae68802115461c015b6c4e5fad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
export function initPipelineCountListener(el) {
  if (!el) return;

  el.addEventListener('update-pipelines-count', (event) => {
    if (event.detail.pipelineCount) {
      const badge = document.querySelector('.js-pipelines-mr-count');

      badge.textContent = event.detail.pipelineCount;
    }
  });
}