Fixing loan repayment max input value.
This commit is contained in:
@@ -538,7 +538,7 @@ class Loans extends React.Component {
|
|||||||
} else {
|
} else {
|
||||||
takeOut = value * 1000;
|
takeOut = value * 1000;
|
||||||
}
|
}
|
||||||
this.setState({ repay: Math.max(0, Math.ceil(
|
this.setState({ repay: Math.max(0, Math.floor(
|
||||||
Math.min(repay, this.props.player.debt + 900, this.props.player.cash) / 1000)),
|
Math.min(repay, this.props.player.debt + 900, this.props.player.cash) / 1000)),
|
||||||
takeOut: Math.max(0, Math.floor(
|
takeOut: Math.max(0, Math.floor(
|
||||||
Math.min(takeOut, this.state.maxLoan) / 1000)) });
|
Math.min(takeOut, this.state.maxLoan) / 1000)) });
|
||||||
@@ -583,7 +583,7 @@ class Loans extends React.Component {
|
|||||||
$:
|
$:
|
||||||
<input onChange={this.handleInput} name='repay' type='number'
|
<input onChange={this.handleInput} name='repay' type='number'
|
||||||
value={this.state.repay === 0 ? '' : this.state.repay}/>
|
value={this.state.repay === 0 ? '' : this.state.repay}/>
|
||||||
{'\u00A0'}K / ${this.props.player.debt / 1000}K
|
{'\u00A0'}K / ${Math.floor(this.props.player.debt / 1000)}K
|
||||||
</div>
|
</div>
|
||||||
</Col>
|
</Col>
|
||||||
<Col width='4'>
|
<Col width='4'>
|
||||||
|
|||||||
Reference in New Issue
Block a user