From dc9b09a4ee390db471ba8b7dedc375a9c7e72ad3 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 13 12월 2021 15:56:49 +0900 Subject: [PATCH] - 연관이슈 검색 시 다른 이슈 유형(다른 프로젝트)의 이슈도 검색 가능 하도록 수정 - 부서 삭제 코드 약간 수정 --- src/main/webapp/scripts/app/customField/customFieldAdd.controller.js | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js b/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js index 018b3c8..c309bd5 100644 --- a/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js +++ b/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js @@ -30,7 +30,8 @@ ipAdress : "", email : "", site : "", - tel : "" + tel : "", + requiredData : false } }; @@ -42,7 +43,7 @@ // �븘�뱶 �쑀�삎�쓣 蹂�寃� �뻽�쓣 �븣 臾몄옄�뿴 �븘�뱶�씪 寃쎌슦�뿉�뒗 �샃�뀡 媛믪쓣 珥덇린�솕�빐以��떎. function changeFieldType() { // if ($scope.vm.form.customFieldType === "INPUT") { - $scope.vm.form.name = ""; + // $scope.vm.form.name = ""; $scope.vm.form.options = []; $scope.vm.form.optionText = ""; @@ -106,7 +107,6 @@ return true; } } - return false; } @@ -117,7 +117,6 @@ var content = angular.copy($scope.vm.form); content.name = $rootScope.preventXss(content.name); - if ($scope.vm.form.customFieldType === 'MULTI_SELECT'|| $scope.vm.form.customFieldType === "SINGLE_SELECT") { var convertDefaultValues = ""; @@ -127,7 +126,7 @@ } }); - //content.defaultValue = convertDefaultValues; + content.defaultValue = convertDefaultValues; } CustomField.add($resourceProvider.getContent( -- Gitblit v1.8.0