augur-ui-react-components
Advanced tools
Comparing version 3.6.4 to 3.6.5
{ | ||
"name": "augur-ui-react-components", | ||
"version": "3.6.4", | ||
"version": "3.6.5", | ||
"description": "Augur UI React Components", | ||
@@ -5,0 +5,0 @@ "author": "Augur Project", |
import React from 'react'; | ||
import MarketItem from 'modules/market/components/market-preview'; | ||
import MarketPreview from 'modules/market/components/market-preview'; | ||
import FormButtons from 'modules/create-market/components/create-market-form-buttons'; | ||
@@ -9,3 +9,3 @@ import ValueDenomination from 'modules/common/components/value-denomination'; | ||
<h1>Review and submit your new market</h1> | ||
<MarketItem {...p} /> | ||
<MarketPreview {...p} /> | ||
<ValueDenomination className="market-creation-fee" {...p.marketCreationFee} prefix="Market creation fee:" /> | ||
@@ -12,0 +12,0 @@ <br /> |
@@ -59,2 +59,5 @@ import React, { PropTypes } from 'react'; | ||
<li> | ||
Fixed button-not-clickable bug in create market workflow. | ||
</li> | ||
<li> | ||
Fixed report panel component and links. Reporting should now work with the re-skinned market detail page! | ||
@@ -61,0 +64,0 @@ </li> |
@@ -52,9 +52,12 @@ import React from 'react'; | ||
<Link | ||
{...p.marketLink} | ||
onClick={p.marketLink.onClick} | ||
className="market-description" | ||
> | ||
{p.description} | ||
</Link> | ||
{p.marketLink ? | ||
<Link | ||
{...p.marketLink} | ||
onClick={p.marketLink.onClick} | ||
className="market-description" | ||
> | ||
{p.description} | ||
</Link> : | ||
<span className="market-description">{p.description}</span> | ||
} | ||
@@ -61,0 +64,0 @@ <MarketProperties {...p} /> |
@@ -16,3 +16,3 @@ import React from 'react'; | ||
> | ||
<span className="property-label">{p.endDateLabel}:</span> | ||
<span className="property-label">{p.endDateLabel || 'End Date'}:</span> | ||
<ValueDate className="property-value" {...p.endDate} /> | ||
@@ -19,0 +19,0 @@ </a> |
Sorry, the diff of this file is too big to display
2314470
43226