From 8076639088a150474da9e0584b733673b3065fed Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 20 12월 2021 11:41:16 +0900 Subject: [PATCH] - 이슈상세에서 하위이슈 추가 검색시 상위 이슈는 검색 리스트에서 나오지 말아야함 - 이슈상세에서 연관 이슈/하위 이슈 리스트 전체 불러오기 --- src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js b/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js index 97af0f2..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("companyField.url") + .setHWidth("bold") + .setDName("url") + .setDAlign("text-center")); + $scope.vm.tableConfigs.push($tableProvider.config() .setHName("hostingField.memo") .setHWidth("bold") - .setDName("desc") + .setDName("memo") .setDAlign("text-center")); } -- Gitblit v1.8.0