From 663ea2f2eca3b7da3bdaffb13eaac44433adb62f Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 목, 16 12월 2021 13:13:54 +0900 Subject: [PATCH] 기록탭 html 태그 보이는 내용 수정 / 사이드바 사용자 프로필 등급, 부서명 표시 수정 --- src/main/webapp/views/common/sidebar.html | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/views/common/sidebar.html b/src/main/webapp/views/common/sidebar.html index 35ae2eb..3bccf52 100644 --- a/src/main/webapp/views/common/sidebar.html +++ b/src/main/webapp/views/common/sidebar.html @@ -192,7 +192,10 @@ {{$root.user.name}} </div> </div> - <div class="logged-user-toggler-arrow"> + <div ng-if="$root.myDepartments == null" class="logged-user-toggler-arrow"> + <div class="os-icon os-icon-chevron-down"></div> + </div> + <div ng-if="$root.myDepartments != null" class="logged-user-toggler-arrow_change"> <div class="os-icon os-icon-chevron-down"></div> </div> <div class="logged-user-menu color-style-bright"> @@ -234,6 +237,12 @@ </ul> </div> </div> + <div ng-if="$root.myLevel != null" class="issue-main-label offset-detail-5 mt-1"> + <span>{{$root.myLevel}}</span> + </div> + <div ng-if="$root.myDepartments != null" class="issue-main-label offset-detail-5 mt-1"> + <span>{{$root.myDepartments}}</span> + </div> </div> <ul class="main-menu"> @@ -252,7 +261,7 @@ <span>ISSUE LIST</span> </li> - <li ng-repeat="issueType in $root.workIssueTypes"> + <li ng-repeat="issueType in $root.workIssueTypes" > <a class="cursor" tabindex="-1" ng-click="fn.changeIssueListMenu(issueType.id)"> <div class="icon-w"> <div class="os-icon os-icon-layout"></div> -- Gitblit v1.8.0