From 15fe9c795db648096e9d7617e609fdb1c0e7cb13 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 29 11월 2021 09:49:54 +0900 Subject: [PATCH] 프로젝트 생성,수정 시 날짜 유효성 체크 제거 --- src/main/webapp/scripts/app/issue/issueDetail.controller.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/scripts/app/issue/issueDetail.controller.js b/src/main/webapp/scripts/app/issue/issueDetail.controller.js index 42f532e..d2837a2 100644 --- a/src/main/webapp/scripts/app/issue/issueDetail.controller.js +++ b/src/main/webapp/scripts/app/issue/issueDetail.controller.js @@ -749,6 +749,7 @@ return { issueTypeId : $scope.vm.viewer.issueTypeVo.id }; + } } }); @@ -786,8 +787,8 @@ function containsPartner(name) { var result = false; - if ($scope.vm.viewer.usePartnerVo != null) { - $scope.vm.viewer.usePartnerVo.forEach(function (partnerVo) { + if ($scope.vm.viewer.usePartnerVos != null) { + $scope.vm.viewer.usePartnerVos.forEach(function (partnerVo) { if (name === partnerVo.name) { result = true; } @@ -1082,7 +1083,6 @@ } }); } - } ]); } -- Gitblit v1.8.0