From 6ae9f3ab6d498f7a4d72c3fbbe8b90e6358f389b Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 21 12월 2021 13:31:54 +0900 Subject: [PATCH] 사용자 정의필드 시간형태 등호 변경 --- src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js b/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js index 461d586..16e8fd0 100644 --- a/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js +++ b/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js @@ -271,17 +271,18 @@ } // �궗�슜�옄媛� �냽�빐�엳�뒗 遺��꽌 �닔�젙 �뙘�뾽 - function modifyUserDepartments(id) { + function modifyUserDepartments(id, userId) { $uibModal.open({ - templateUrl : 'views/workspace/workspaceDepartmentModify.html', - size : "xlg", - controller : 'workspaceDepartmentModifyController', + templateUrl : 'views/workspace/workspaceUserDepartmentModify.html', + size : "md", + controller : 'workspaceUserDepartmentModifyController', backdrop : 'static', windowClass : 'workflow-window', resolve : { parameter : function () { return { - id : id + id : id, + userId : userId }; } } -- Gitblit v1.8.0