mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
fixed is_loading display
This commit is contained in:
parent
a999f8019c
commit
0e3c7cbfd6
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ const NodeNoComments: FC<IProps> = ({ is_loading = false, count = 3 }) => {
|
|||
return (
|
||||
<Group className={classNames(styles.wrap, { is_loading })}>
|
||||
{items}
|
||||
{is_loading && <div className={styles.nothing}>{t(ERRORS.NO_COMMENTS)}</div>}
|
||||
{!is_loading && <div className={styles.nothing}>{t(ERRORS.NO_COMMENTS)}</div>}
|
||||
</Group>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue