From 34351d822ce35efe2488004e586beeb074fbe5ae Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 화, 04 1월 2022 13:25:28 +0900 Subject: [PATCH] - API 수정 명령시 댓글 추가 가능(comment) - API 이슈 입력시 상위 이슈에 같은 도메인 업체 등록되도록 수정 --- src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js b/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js index 6de39c8..8f1ce26 100644 --- a/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js +++ b/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js @@ -90,9 +90,14 @@ .setDName("email") .setDAlign("text-center")); $scope.vm.tableConfigs.push($tableProvider.config() - .setHName("hostingField.desc") + .setHName("companyField.url") .setHWidth("bold") - .setDName("desc") + .setDName("url") + .setDAlign("text-center")); + $scope.vm.tableConfigs.push($tableProvider.config() + .setHName("hostingField.memo") + .setHWidth("bold") + .setDName("memo") .setDAlign("text-center")); } -- Gitblit v1.8.0