diff options
Diffstat (limited to 'components/pq-input/pq-review-wrapper.tsx')
| -rw-r--r-- | components/pq-input/pq-review-wrapper.tsx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/components/pq-input/pq-review-wrapper.tsx b/components/pq-input/pq-review-wrapper.tsx index cc0f1b40..ca5f314f 100644 --- a/components/pq-input/pq-review-wrapper.tsx +++ b/components/pq-input/pq-review-wrapper.tsx @@ -380,12 +380,14 @@ export function PQReviewWrapper({ {item.description} </CardDescription> )} - {/* <div className="text-sm text-muted-foreground"> - 생성일: {item.createdAt?.toLocaleString('ko-KR')} - </div> - <div className="text-sm text-muted-foreground"> - 수정일: {item.updatedAt?.toLocaleString('ko-KR')} - </div> */} + {item.remarks && ( + <div className="mt-2 p-2 rounded-md"> + <p className="text-sm font-medium text-muted-foreground mb-1">Remark:</p> + <p className="text-sm whitespace-pre-wrap"> + {item.remarks} + </p> + </div> + )} </div> {/* 항목 상태 표시 */} {!!item.answer || item.attachments.length > 0 ? ( |
