diff --git a/qortal-ui-plugins/plugins/core/names-market/names-market.src.js b/qortal-ui-plugins/plugins/core/names-market/names-market.src.js index c06534f5..ff5e72b8 100644 --- a/qortal-ui-plugins/plugins/core/names-market/names-market.src.js +++ b/qortal-ui-plugins/plugins/core/names-market/names-market.src.js @@ -679,7 +679,7 @@ class NamesMarket extends LitElement { async updatePageSoldSize() { this.filteredSoldItems = [] - this.marketSoldNames.sort((a, b) => parseFloat(a.amount) - parseFloat(b.amount)) + this.marketSoldNames.sort((b, a) => parseFloat(a.amount) - parseFloat(b.amount)) this.filteredSoldItems = this.marketSoldNames await this.setSoldPages() await this.updateItemsSoldFromPage(1, true)