New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

augur-ui-react-components

Package Overview
Dependencies
Maintainers
5
Versions
221
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

augur-ui-react-components - npm Package Compare versions

Comparing version 3.6.4 to 3.6.5

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc