This commit is contained in:
mrfry 2023-04-02 09:25:21 +02:00
parent ed507dc39f
commit b2c76a8471
2 changed files with 3 additions and 2 deletions

View file

@ -76,7 +76,7 @@ function Comment({ comment, index, onComment, onDelete, onReact, uid }) {
: dateObj.toLocaleTimeString()}
</div>
</div>
<div className={`${!displayed && styles.hidden}`}>
<div className={`${!displayed ? styles.hidden : ''}`}>
<div className={styles.commentText}>{content}</div>
<div className={'actions'}>
<span

View file

@ -55,6 +55,7 @@
.commentText {
margin: 2px;
padding: 10px 5px;
white-space: pre-line;
}
.ownComment {