mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
fixed image attachments on SSR
This commit is contained in:
parent
2e88b79d67
commit
e2d870f187
1 changed files with 11 additions and 3 deletions
|
@ -70,8 +70,15 @@ const CommentContent: FC<IProps> = memo(
|
|||
}, [comment, onDelete]);
|
||||
|
||||
const menu = useMemo(
|
||||
() =>
|
||||
canEdit && <CommentMenu onDelete={onLockClick} onEdit={startEditing} />,
|
||||
() => (
|
||||
<div>
|
||||
{canEdit && (
|
||||
<Authorized>
|
||||
<CommentMenu onDelete={onLockClick} onEdit={startEditing} />
|
||||
</Authorized>
|
||||
)}
|
||||
</div>
|
||||
),
|
||||
[canEdit, startEditing, onLockClick],
|
||||
);
|
||||
|
||||
|
@ -97,9 +104,10 @@ const CommentContent: FC<IProps> = memo(
|
|||
return (
|
||||
<div className={styles.wrap}>
|
||||
{!!prefix && <div className={styles.prefix}>{prefix}</div>}
|
||||
|
||||
{comment.text.trim() && (
|
||||
<Group className={classnames(styles.block, styles.block_text)}>
|
||||
<Authorized>{menu}</Authorized>
|
||||
{menu}
|
||||
|
||||
<Group className={styles.renderers}>
|
||||
{blocks.map(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue