Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/webserver/site/src/html/markets.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,8 @@
<span data-tmpl="side"></span>
<span data-tmpl="qty" class="ms-1"></span>
<span data-tmpl="baseSymbol" class="ms-1 grey"></span>
<span class="ms-1">@</span>
<span data-tmpl="rate" class="ms-1"></span>
<span class="flex-grow-1 d-flex align-items-center justify-content-end">
<span data-tmpl="status"></span>
<span data-tmpl="activeLight" class="active-indicator active"></span>
Expand Down
2 changes: 1 addition & 1 deletion client/webserver/site/src/js/markets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ export default class MarketsPage extends BasePage {
details.side.classList.add(ord.sell ? 'sellcolor' : 'buycolor')
header.side.classList.add(ord.sell ? 'sellcolor' : 'buycolor')
details.qty.textContent = header.qty.textContent = fourSigFigs(ord.qty / this.market.baseUnitInfo.conventional.conversionFactor)
details.rate.textContent = fourSigFigs(ord.rate / this.market.rateConversionFactor)
details.rate.textContent = header.rate.textContent = fourSigFigs(ord.rate / this.market.rateConversionFactor)
header.baseSymbol.textContent = ord.baseSymbol.toUpperCase()
details.type.textContent = OrderUtil.typeString(ord)
this.updateMetaOrder(mord)
Expand Down