From f919af96e5e083ad462a5e71c00ff148ebdb91c6 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 목, 20 1월 2022 15:23:28 +0900
Subject: [PATCH] - 오토 컴플릿 항목 선택하면 목록 사라지게 수정 - 업체 메일 발송 시 템플릿 선택 문구 변경 - 연락처 입력 폼 정규식 제거하고 숫자만 입력 가능하게 수정 - 모든 사용자 필드(날짜) 24시간 타입으로 변경

---
 src/main/webapp/views/issue/issueModifyUser.html |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/webapp/views/issue/issueModifyUser.html b/src/main/webapp/views/issue/issueModifyUser.html
index 80fab2f..e1c34b8 100644
--- a/src/main/webapp/views/issue/issueModifyUser.html
+++ b/src/main/webapp/views/issue/issueModifyUser.html
@@ -19,16 +19,16 @@
                                            page="vm.autoCompletePage.user.page"
                                            total-page="vm.autoCompletePage.user.totalPage"
                                            source="fn.getUserList(vm.userName, vm.form.users, vm.autoCompletePage.user.page, fn.getUserListCallBack)"
-                                           translation-texts="{ empty : 'common.emptyUser'}"
-                                           input-disabled="vm.form.projects.length == 0"
+                                           input-disabled="vm.form.users.length == 0"
+                                           translation-texts="{ empty : 'common.emptyProjectDepartment'}"
                                            extra-settings="{ displayProp : 'byName' , idProp : 'id', imageable : true, imagePathProp : 'profile',
                                                type : 'user', maxlength : 100, autoResize : true, stopRemoveBodyEvent : true }"></js-input-autocomplete>
 
-                    <small translate="common.setParticipatingInProject">�봽濡쒖젥�듃�뿉 李몄뿬�븯�뒗 �궗�슜�옄瑜� �꽕�젙�빀�땲�떎.</small>
                     <div class="select3-selection__choicediv">
                             <span class="select3-selection__choice" ng-repeat="user in vm.form.users">
-                                <span class="avatar-w"><img ng-src="{{user.profile}}"></span>
-                                <span>{{user.name}}({{user.account}})</span>
+                                <span class="avatar-w"></span>
+                                <img ng-src="{{department.profile}}">
+                                <span>{{user.name}}({{user.id}})</span>
                                 <span class="select3-selection__choice__remove"
                                       ng-click="fn.removeManager($index)">횞</span>
                             </span>

--
Gitblit v1.8.0