커뮤니티 공지사항/FAQ 갱신일자 표기 추가 #697

This commit is contained in:
LEEYONGJAE 2025-02-11 17:21:35 +09:00
parent 938510fb16
commit b1090fbc76
3 changed files with 13 additions and 1 deletions

View File

@ -74,6 +74,7 @@ export default function Table({ clsCode }) {
<col width={100} />
<col />
<col width={200} />
<col width={150} />
</colgroup>
<tbody>
{boardList.length > 0 ? (
@ -96,6 +97,15 @@ export default function Table({ clsCode }) {
{board.attachYn === 'Y' && <span className="clip"></span>}
</div>
</td>
<td>
<div className="renewal">
{board.uptDt && (
<>
(<span>{getMessage('board.uptDt')}</span> : {board.uptDt})
</>
)}
</div>
</td>
<td className="al-c">
{/* 등록일 */}
{board.regDt.split(' ')[0]}
@ -104,7 +114,7 @@ export default function Table({ clsCode }) {
))
) : (
<tr>
<td colSpan={3} className="al-c">
<td colSpan={4} className="al-c">
{getMessage('common.message.no.data')}
</td>
</tr>

View File

@ -561,6 +561,7 @@
"board.sub.fileList": "添付ファイル一覧",
"board.sub.updDt": "更新",
"board.sub.btn.close": "閉じる",
"board.uptDt": "更新",
"myinfo.title": "社員情報",
"myinfo.info.userId": "ユーザーID",
"myinfo.info.nameKana": "担当者名日本語",

View File

@ -561,6 +561,7 @@
"board.sub.fileList": "첨부파일 목록",
"board.sub.updDt": "업데이트",
"board.sub.btn.close": "닫기",
"board.uptDt": "갱신",
"myinfo.title": "내정보",
"myinfo.info.userId": "사용자ID",
"myinfo.info.nameKana": "담당자명 일본어",