diff --git a/components/board/notice/notice.table.jsx b/components/board/notice/notice.table.jsx index b6f4cc3..16611f5 100644 --- a/components/board/notice/notice.table.jsx +++ b/components/board/notice/notice.table.jsx @@ -4,8 +4,6 @@ import { Image, Table } from 'semantic-ui-react' const NoticeTable = ({notices}) => { - const duration = moment(end_datetime).diff(moment(start_datetime), 'hours'); - return ( { - notices.map((notice, idx) => - - - {idx + 1} - - - {notice.title} - - - - {notice.content} - - - - - - {notice.start_datetime} ~ {notice.end_datetime} ({Number(duration/24).toFixed(0)}일 {duration%24}시간) - - - {notice.click_count} - - - - ) + notices.map((notice, idx) => { + const duration = moment(notice.end_datetime).diff(moment(notice.start_datetime), 'hours'); + return ( + + + {idx + 1} + + + {notice.title} + + + + {notice.content} + + + + + + {moment(notice.start_datetime).format('YYYY-MM-DD HH:mm')} ~ {moment(notice.end_datetime).format('YYYY-MM-DD HH:mm')} ({Number(duration/24).toFixed(0)}일 {duration%24}시간) + + + {notice.click_count} + + + + ) + }) }
diff --git a/pages/board/notice/update/[id].jsx b/pages/board/notice/update/[id].jsx index 9a181fe..40480e8 100644 --- a/pages/board/notice/update/[id].jsx +++ b/pages/board/notice/update/[id].jsx @@ -15,6 +15,7 @@ const NoticeUpdatePage = ({ noticeInfo }) => { const [deleteModalOpen, setDeleteModalOpen] = useState(false) + const id = noticeInfo.id; const [title, setTitle] = useState(noticeInfo.title) const [content, setContent] = useState(noticeInfo.content) const [link, setLink] = useState(noticeInfo.link) @@ -62,7 +63,7 @@ const NoticeUpdatePage = ({ noticeInfo }) => { /> - 공지사항은 이미지 업로드는 공지사항 생성 후, 수정 페이지에서 가능합니다. + 공지사항 이미지 업로드는 공지사항 생성 후, 수정 페이지에서 가능합니다. { 권장 이미지 사이즈(가로 x 세로): 540 x 200