From e06bb8a6f708e98749e7e35823973fc5703ef903 Mon Sep 17 00:00:00 2001 From: leebeomjun Date: Thu, 11 May 2023 11:03:59 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=ED=8F=AC=EB=A7=B7=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/js/fims/framework/cmm/cmmUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/resources/js/fims/framework/cmm/cmmUtil.js b/src/main/webapp/resources/js/fims/framework/cmm/cmmUtil.js index 7c1fb116..c7f9683a 100644 --- a/src/main/webapp/resources/js/fims/framework/cmm/cmmUtil.js +++ b/src/main/webapp/resources/js/fims/framework/cmm/cmmUtil.js @@ -467,7 +467,7 @@ const StrTimeFormat= { let srcDate = value.replace(/\-|\s|\:|\./g,''); if(srcDate.length >= 6) { - return srcDate.substring(0, 2)+delimiter+srcDate.substring(2, 4)+delimiter+srcDate.substring(4, 6); + return srcDate.substring(0, 2)+":"+srcDate.substring(2, 4)+":"+srcDate.substring(4, 6); }else{ return srcDate; }