From 80fd501f7c8b06c395897ef77edfb33ee9918874 Mon Sep 17 00:00:00 2001 From: minhee <alsdldlfrl@gmail.com> Date: 수, 16 3월 2022 18:48:36 +0900 Subject: [PATCH] - 프로젝트 선택 - 전체 이슈 선택시 모든 프로젝트의 이슈가 나오는 문제 해결 --- src/main/webapp/custom_components/js-workflow/js-workflow.directive.js | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/main/webapp/custom_components/js-workflow/js-workflow.directive.js b/src/main/webapp/custom_components/js-workflow/js-workflow.directive.js index 9b1096e..7a36c78 100644 --- a/src/main/webapp/custom_components/js-workflow/js-workflow.directive.js +++ b/src/main/webapp/custom_components/js-workflow/js-workflow.directive.js @@ -176,6 +176,17 @@ angular.forEach($scope.vm.issueStatusVos, function (startStatus) { if ($scope.vm.targetStatusId != startStatus.id) { + switch (startStatus.issueStatusType) { + case 'READY' : + startStatus.issueStatusTypeKr = '��湲�' + break; + case 'OPEN' : + startStatus.issueStatusTypeKr = '吏꾪뻾' + break; + case 'CLOSE' : + startStatus.issueStatusTypeKr = '醫낅즺' + break; + } availableStatus.push(startStatus); } }); -- Gitblit v1.8.0