From 9ff3e8c43d01f758381b4925cff44502f1241750 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 수, 22 12월 2021 14:26:36 +0900 Subject: [PATCH] - 일반 사용자로 검색 기능 제대로 동작안되는 문제 해결 - 이슈 유형에서 사용중인 프로젝트는 삭제 불가 - 이슈 유형에서 프로젝트 검색 시 워크스페이스 관리자는 모든 프로젝트 검색 가능(기존엔 참여하고있는 프로젝트만 검색가능하게되어있었음) --- src/main/webapp/custom_components/js-tree/js-tree.html | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/webapp/custom_components/js-tree/js-tree.html b/src/main/webapp/custom_components/js-tree/js-tree.html index 433040f..9b44e7a 100644 --- a/src/main/webapp/custom_components/js-tree/js-tree.html +++ b/src/main/webapp/custom_components/js-tree/js-tree.html @@ -1,4 +1,11 @@ <div> + <table class="table table-striped table-layout-fixed" ng-class="{ 'width768' : !detailView }" bindonce> + <tr ng-if="fn.getResponseData().length == 0"> + <td colspan="{{tableConfigs.length}}"> + <span translate="common.noData">�뜲�씠�꽣媛� �뾾�뒿�땲�떎.</span> + </td> + </tr> + </table> <ul class="ml-1 pl-1 tree"> <li ng-repeat="row in fn.getResponseData()"> <ul class=""> -- Gitblit v1.8.0