Skip to content

Commit

Permalink
fix: update last buy removal threshold min/step (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisleekr authored Oct 30, 2021
1 parent d0ed1af commit 155b1d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/js/SettingIconLastBuyPriceRemoveThreshold.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ class SettingIconLastBuyPriceRemoveThreshold extends React.Component {
type='number'
placeholder={'Enter last buy threshold for ' + quoteAsset}
required
min='0.0001'
step='0.0001'
min='0.00000001'
step='0.00000001'
data-state-key={quoteAsset}
value={lastBuyPriceRemoveThresholds[quoteAsset]}
onChange={this.handleInputChange}
Expand Down
4 changes: 2 additions & 2 deletions public/js/SymbolSettingIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ class SymbolSettingIcon extends React.Component {
type='number'
placeholder='Enter last buy threshold'
required
min='0.0001'
step='0.0001'
min='0.00000001'
step='0.00000001'
data-state-key='buy.lastBuyPriceRemoveThreshold'
value={
symbolConfiguration.buy
Expand Down

0 comments on commit 155b1d5

Please sign in to comment.