style: update CID label and reply modal prefix

This commit is contained in:
plebeius
2025-11-08 21:19:36 +01:00
parent c0a1b671c8
commit 7bdcc252c0
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -181,7 +181,7 @@ const PostInfo = ({ post, postReplyCount = 0, roles, isHidden }: PostProps) => {
title={t('link_to_post')}
onClick={(e) => !cid && e.preventDefault()}
>
c/
CID:
</Link>
<span className={styles.replyToPost} title={t('reply_to_post')} onMouseDown={onReplyModalClick}>
{shortCid}
@@ -189,7 +189,7 @@ const PostInfo = ({ post, postReplyCount = 0, roles, isHidden }: PostProps) => {
</span>
) : (
<>
<span>c/</span>
<span>CID:</span>
<span className={styles.pendingCid}>
{state === 'failed' || stateString === 'Failed' ? _.capitalize(t('failed')) : state === 'pending' ? _.capitalize(t('pending')) : ''}
</span>