Browse Source

Fixx Sell Tab

qdn-metadata
AlphaX-Projects 3 years ago committed by GitHub
parent
commit
1321d933eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      qortal-ui-plugins/plugins/core/trade-portal/trade-portal.src.js

4
qortal-ui-plugins/plugins/core/trade-portal/trade-portal.src.js

@ -610,7 +610,7 @@ class TradePortal extends LitElement {
id="sellAmountInput"
required label="Amount (QORT)"
placeholder="0.0000"
@input=${(e) => {this._checkSellAmount(e)}}
@input="${(e) => {this._checkSellAmount(e)}}"
type="number"
auto-validate="false"
outlined value="${this.initialAmount}"
@ -623,7 +623,7 @@ class TradePortal extends LitElement {
id="sellPriceInput"
required label="Price Ea. (${this.listedCoins.get(this.selectedCoin).coinCode})"
placeholder="0.0000"
@input=${(e) => {this._checkSellAmount(e)}}
@input="${(e) => {this._checkSellAmount(e)}}"
type="number"
auto-validate="false"
outlined value="${this.initialAmount}"

Loading…
Cancel
Save