diff --git a/web/src/component/ReviewEntry.js b/web/src/component/ReviewEntry.js index 0a5c432..851361e 100644 --- a/web/src/component/ReviewEntry.js +++ b/web/src/component/ReviewEntry.js @@ -11,6 +11,8 @@ function ReviewEntry(props) { @{props.review.user.username} {" "} wrote on {convertIntToDateTime(props.review.created_at)}{" "} + {props.review.updated_at !== 0 && + "(modified on " + convertIntToDateTime(props.review.updated_at) + ")"}
{props.review.content}
{(props.user.role === 1 || props.review.user.id === props.user.id) &&