Expanding info section.

logins
Thomas Hintz 5 years ago
parent b3c0de6592
commit d554476502

@ -596,7 +596,7 @@ class Loans extends React.Component {
$: $:
<input onChange={this.handleInput} name='takeOut' type='number' <input onChange={this.handleInput} name='takeOut' type='number'
value={this.state.takeOut === 0 ? '' : this.state.takeOut} /> value={this.state.takeOut === 0 ? '' : this.state.takeOut} />
{'\u00A0'}K / ${this.state.maxLoan / 1000}K {'\u00A0'}K / ${Math.floor(this.state.maxLoan / 1000)}K
</div> </div>
</Col> </Col>
<Col width='4'> <Col width='4'>
@ -1421,8 +1421,8 @@ class Info extends React.Component {
{this.props.harvestTable ? (<HarvestTable table={this.props.harvestTable} />) : (<></>)} {this.props.harvestTable ? (<HarvestTable table={this.props.harvestTable} />) : (<></>)}
<p>After a harvest an Operating Expense is drawn.</p> <p>After a harvest an Operating Expense is drawn.</p>
<h2>Purchashing</h2> <h2>Purchashing</h2>
<p>To increase harvest amounts new assets must be bought. This is done via {itemCard} cards. Click on <FontAwesomeIcon icon={faWindowRestore} />, select the card for the asset you wish to purchase, and enter the amount of cash you desire to spend to purchace the selected asset. The remainder will be taken out in debit, if available.</p> <p>To increase harvest amounts new assets must be bought. This is done via {itemCard} cards. Click on <FontAwesomeIcon icon={faWindowRestore} />, select the card for the asset you wish to purchase, and enter the amount of cash you desire to spend to purchase the selected asset. The remainder will be taken out in debit, if available.</p>
<p>Purchashing may only take places on Purchashing spaces (Christmas - Spring Celebration).</p> <p>Purchashing may only take place on Purchashing spaces (Christmas - Spring Celebration).</p>
<Misc /> <Misc />
</> </>
); );

Loading…
Cancel
Save