mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-24 16:58:47 +01:00
Use different icon for comment hint
This commit is contained in:
parent
b22e7c06a7
commit
6553ae0b6e
1 changed files with 2 additions and 2 deletions
|
@ -810,7 +810,7 @@ function StatusThread({ id, closeLink = '/', instance: propInstance }) {
|
||||||
/>
|
/>
|
||||||
{ancestor && isThread && repliesCount > 1 && (
|
{ancestor && isThread && repliesCount > 1 && (
|
||||||
<div class="replies-link">
|
<div class="replies-link">
|
||||||
<Icon icon="comment" />{' '}
|
<Icon icon="comment2" />{' '}
|
||||||
<span title={repliesCount}>
|
<span title={repliesCount}>
|
||||||
{shortenNumber(repliesCount)}
|
{shortenNumber(repliesCount)}
|
||||||
</span>
|
</span>
|
||||||
|
@ -1323,7 +1323,7 @@ function SubComments({
|
||||||
/>
|
/>
|
||||||
{!r.replies?.length && r.repliesCount > 0 && (
|
{!r.replies?.length && r.repliesCount > 0 && (
|
||||||
<div class="replies-link">
|
<div class="replies-link">
|
||||||
<Icon icon="comment" />{' '}
|
<Icon icon="comment2" />{' '}
|
||||||
<span title={r.repliesCount}>
|
<span title={r.repliesCount}>
|
||||||
{shortenNumber(r.repliesCount)}
|
{shortenNumber(r.repliesCount)}
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in a new issue