From 49cc431b9caedd37b10d017867b014658cbeafba Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 화, 07 12월 2021 09:31:26 +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