From 07cd513babd9e70c824dc6c573437bfe68ee47a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EC=84=9D=20=EC=B5=9C?= Date: Tue, 26 Dec 2023 11:19:04 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B6=81=EB=A7=88=ED=81=AC=20=EB=AA=A8?= =?UTF-8?q?=EB=8B=AC=20=EC=97=B0=EB=8F=84=20=EC=84=A0=ED=83=9D=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/pages/standardCode/BookmarkModal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egovframe-template-simple-react-contribution/src/pages/standardCode/BookmarkModal.js b/egovframe-template-simple-react-contribution/src/pages/standardCode/BookmarkModal.js index d60895d..60231ca 100644 --- a/egovframe-template-simple-react-contribution/src/pages/standardCode/BookmarkModal.js +++ b/egovframe-template-simple-react-contribution/src/pages/standardCode/BookmarkModal.js @@ -71,7 +71,7 @@ const BookmarkModal = ({docCode, docPart, ymd}) => { let activeIndex = 0; let docTitle = ""; docInfo.forEach(function (item, index){ - if(new Date(item.estb_ymd) <= new Date(ymd)){ + if(new Date(item.rvsn_ymd) <= new Date(ymd)){ activeIndex = index; docTitle = item.doc_nm }