Skip to content

Commit

Permalink
Merge pull request #69 from hunterjm/develop
Browse files Browse the repository at this point in the history
fix manual price length
  • Loading branch information
hunterjm authored Jan 29, 2017
2 parents e5b0a02 + e99126f commit e4e4871
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/components/player/PlayerSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class PlayerSettings extends Component {
</div>
<div className="option-value">
<input
ref={buyInput => (this.buyInput = buyInput)} maxLength="9" name="buy" placeholder="Buy"
ref={buyInput => (this.buyInput = buyInput)} maxLength="10" name="buy" placeholder="Buy"
value={buy} type="text" onChange={this.handlePriceChange.bind(this)} onBlur={this.handlePriceBlur.bind(this)}
/>
<p className="error-message">{this.state.errors.buy}</p>
Expand All @@ -164,7 +164,7 @@ export class PlayerSettings extends Component {
</div>
<div className="option-value">
<input
ref={sellInput => (this.sellInput = sellInput)} maxLength="3" name="sell" placeholder="Sell"
ref={sellInput => (this.sellInput = sellInput)} maxLength="10" name="sell" placeholder="Sell"
value={sell} type="text" onChange={this.handlePriceChange.bind(this)} onBlur={this.handlePriceBlur.bind(this)}
/>
<p className="error-message">{this.state.errors.sell}</p>
Expand All @@ -179,7 +179,7 @@ export class PlayerSettings extends Component {
</div>
<div className="option-value">
<input
ref={binInput => (this.binInput = binInput)} maxLength="3" name="bin" placeholder="BIN"
ref={binInput => (this.binInput = binInput)} maxLength="10" name="bin" placeholder="BIN"
value={bin} type="text" onChange={this.handlePriceChange.bind(this)} onBlur={this.handlePriceBlur.bind(this)}
/>
<p className="error-message">{this.state.errors.bin}</p>
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fifa-autobuyer",
"productName": "FIFA Autobuyer",
"version": "0.2.0",
"version": "0.2.1",
"description": "Autobuyer for FIFA 17 Ultimate Team",
"main": "./main.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fifa-autobuyer",
"productName": "FIFA Autobuyer",
"version": "0.2.0",
"version": "0.2.1",
"description": "Autobuyer for FIFA 17 Ultimate Team",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit e4e4871

Please sign in to comment.