Feature/sort benchmarks by name ()

* Sort benchmarks by name

* Update changelog
This commit is contained in:
Thomas Kaul
2022-09-12 13:34:06 +02:00
committed by GitHub
parent 33f20b6b48
commit 5e3cac8ac9
2 changed files with 16 additions and 8 deletions
CHANGELOG.md
apps/api/src/app/benchmark

@ -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/),
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
### Changed

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