OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2021-12-21 805d46a66946b49f9386f92b38c99a32672c4d54
src/main/webapp/scripts/app/issue/issueDetail.controller.js
@@ -850,13 +850,12 @@
                //  이슈 상세 정보 조회
                function getIssueDetail() {
                    $rootScope.spinner = true;
                    //  초기화 해야할 할목을 지정하여 다른 이슈를 클릭할 때 초기화해준다.
                    $scope.fn.initReload();
                    // $scope.fn.getRelTableConfigs();
                    // $scope.fn.getDownTableConfigs();
                        Issue.detail($resourceProvider.getContent(
                    Issue.detail($resourceProvider.getContent(
                        {id : $scope.vm.viewer.id, deep : "02"},
                        $resourceProvider.getPageContent(0, 1))).then(function (result) {
@@ -917,12 +916,12 @@
                                if ($rootScope.workProject.id > -1 && result.data.data.projectVo !== null) {
                                    $rootScope.changeLastProject(result.data.data.projectVo.id);
                                }
                            }
                        }
                        else {
                            SweetAlert.swal($filter("translate")("issue.errorIssueDetails"), result.data.message.message, "error"); // 이슈 상세 정보 조회 오류
                        }
                        $rootScope.spinner = false;
                    });
                }