Add note on comment when edited

This commit is contained in:
Tom Moor
2023-04-13 09:52:39 -04:00
parent 2d354f95fa
commit 7cd3bf8859

View File

@@ -89,7 +89,8 @@ function CommentThreadItem({
const [data, setData] = React.useState(toJS(comment.data));
const showAuthor = firstOfAuthor;
const showTime = useShowTime(comment.createdAt, previousCommentCreatedAt);
const showEdited = comment.updatedAt !== comment.createdAt;
const showEdited =
comment.updatedAt && comment.updatedAt !== comment.createdAt;
const [isEditing, setEditing, setReadOnly] = useBoolean();
const formRef = React.useRef<HTMLFormElement>(null);