summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commit/pipelines/utils.js
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;
    }
  });
}