diff --git a/src/main/resources/templates/dashboard.html b/src/main/resources/templates/dashboard.html index 2ef3e82..468b9c4 100644 --- a/src/main/resources/templates/dashboard.html +++ b/src/main/resources/templates/dashboard.html @@ -221,7 +221,10 @@ // ----- 파이프라인 + 병목 ----- document.getElementById('pipeTotal').textContent = '총 ' + fmt(total); - const stages = [['미검토',bs.NEW],['검토중',bs.REVIEWING],['작업대상',bs.TARGET],['완료',bs.DONE],['발행완료',pbs.PUBLISHED]]; + const stages = [ + ['미검토', bs.NEW], ['검토중', bs.REVIEWING], ['작업대상', bs.TARGET], + ['완료', bs.DONE], ['발행완료', pbs.PUBLISHED] + ]; let bottleneck = stages[0]; for(const s of stages){ if(Number(s[1]||0) > Number(bottleneck[1]||0)) bottleneck = s; } document.getElementById('funnel').innerHTML =