mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Merge pull request #2556 from thisandagain/hotfix/nocap
[Release] Remove "CappedNumber" from view count on project page.
This commit is contained in:
commit
53a0112e60
1 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@ const React = require('react');
|
|||
const FlexRow = require('../../components/flex-row/flex-row.jsx');
|
||||
const classNames = require('classnames');
|
||||
|
||||
const CappedNumber = require('../../components/cappednumber/cappednumber.jsx');
|
||||
const projectShape = require('./projectshape.jsx').projectShape;
|
||||
|
||||
require('./stats.scss');
|
||||
|
@ -34,7 +33,7 @@ const Stats = props => (
|
|||
className="project-views"
|
||||
key="views"
|
||||
>
|
||||
<CappedNumber value={props.projectInfo.stats.views} />
|
||||
{props.projectInfo.stats.views}
|
||||
</div>
|
||||
</FlexRow>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue