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/views/api/apiMonitor.html |   18 +++++++++++++-----
 1 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/src/main/webapp/views/api/apiMonitor.html b/src/main/webapp/views/api/apiMonitor.html
index eddba0e..3db8e70 100644
--- a/src/main/webapp/views/api/apiMonitor.html
+++ b/src/main/webapp/views/api/apiMonitor.html
@@ -23,12 +23,20 @@
                 </select>
 
 
-                <google-chart
-                              columns="vm.chartData.columns"
-                              rows="vm.chartData.rows"
-                              options="vm.chartData.options">
+                <div class="no-cont1"
+                     ng-if="vm.chartData.columns.length < 1"
+                     translate="common.noRecord">
+                    湲곕줉�씠 �뾾�뒿�땲�떎.
+                </div>
 
-                </google-chart>
+                <div  ng-if="vm.chartData.columns.length > 0">
+                    <google-chart
+                                  columns="vm.chartData.columns"
+                                  rows="vm.chartData.rows"
+                                  options="vm.chartData.options">
+
+                    </google-chart>
+                </div>
             </div>
         </div>
     </div>

--
Gitblit v1.8.0