Skip to content

Commit 809d499

Browse files
authored
Merge pull request #135 from PNUops/fix/admin-notice-list-edit-date
fix: 관리자 공지사항 목록에서 날짜가 잘리는 문제 수정
2 parents 33252a3 + d35f7d3 commit 809d499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/admin/NoticeManageTab/ManageNoticeListTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const ManageNoticeListTab = () => {
3939
label: '편집일시',
4040
width: '20%',
4141
key: 'updatedAt',
42-
render: (row) => row.updatedAt.replace('T', ' ').slice(0, 16),
42+
render: (row) => row.updatedAt,
4343
},
4444
{ label: '제목', width: '50%', key: 'title' },
4545
]}

0 commit comments

Comments
 (0)