augur-ui-react-components
Advanced tools
Comparing version 3.1.6 to 3.1.7
{ | ||
"name": "augur-ui-react-components", | ||
"version": "3.1.6", | ||
"version": "3.1.7", | ||
"description": "Augur UI React Components", | ||
@@ -5,0 +5,0 @@ "author": "Augur Project", |
import React from 'react'; | ||
import classnames from 'classnames'; | ||
import ValueDenomination from '../../common/components/value-denomination'; | ||
@@ -8,16 +7,4 @@ const PositionsSummary = (p) => ( | ||
{!!p.numPositions && | ||
<ValueDenomination {...p.numPositions} className="num-positions" /> | ||
<span className="num-positions">Positions</span> | ||
} | ||
{p.totalValue && | ||
<ValueDenomination {...p.totalValue} className="total-value" /> | ||
} | ||
{p.gainPercent && | ||
<ValueDenomination | ||
{...p.gainPercent} | ||
className="gain-percent" | ||
formatted={p.gainPercent.formatted} | ||
/> | ||
} | ||
</div> | ||
@@ -24,0 +11,0 @@ ); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1227809
10510