mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Resolved issue #2263
This commit is contained in:
parent
d2500e88c7
commit
9b7097a772
1 changed files with 2 additions and 2 deletions
|
@ -16,14 +16,14 @@ const Stats = props => (
|
|||
key="loves"
|
||||
onClick={props.onLoveClicked}
|
||||
>
|
||||
{approx(props.loveCount, {decimal: false})}
|
||||
{approx(Math.max(0, props.loveCount), {decimal: false})}
|
||||
</div>
|
||||
<div
|
||||
className={classNames('project-favorites', {favorited: props.faved})}
|
||||
key="favorites"
|
||||
onClick={props.onFavoriteClicked}
|
||||
>
|
||||
{approx(props.favoriteCount, {decimal: false})}
|
||||
{approx(Math.max(0, props.favoriteCount), {decimal: false})}
|
||||
</div>
|
||||
<div
|
||||
className="project-remixes"
|
||||
|
|
Loading…
Reference in a new issue