Browse Source

Feature/sort benchmarks by name (#1250)

* Sort benchmarks by name

* Update changelog
pull/1255/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
5e3cac8ac9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 6
      apps/api/src/app/benchmark/benchmark.service.ts

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Sorted the benchmarks by name
## 1.192.0 - 11.09.2022 ## 1.192.0 - 11.09.2022
### Changed ### Changed

6
apps/api/src/app/benchmark/benchmark.service.ts

@ -119,14 +119,16 @@ export class BenchmarkService {
const assetProfiles = const assetProfiles =
await this.symbolProfileService.getSymbolProfilesByIds(symbolProfileIds); await this.symbolProfileService.getSymbolProfilesByIds(symbolProfileIds);
return assetProfiles.map(({ dataSource, id, name, symbol }) => { return assetProfiles
.map(({ dataSource, id, name, symbol }) => {
return { return {
dataSource, dataSource,
id, id,
name, name,
symbol symbol
}; };
}); })
.sort((a, b) => a.name.localeCompare(b.name));
} }
public async getMarketDataBySymbol({ public async getMarketDataBySymbol({

Loading…
Cancel
Save