diff --git a/CHANGELOG.md b/CHANGELOG.md index 901b50eba..3299a24b5 100644 --- a/CHANGELOG.md +++ b/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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Changed + +- Harmonized the _No data available_ label in the portfolio proportion chart component + ## 1.145.0 - 07.05.2022 ### Added diff --git a/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts b/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts index 94130e60e..78e56a8cc 100644 --- a/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts +++ b/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -349,7 +349,7 @@ export class PortfolioProportionChartComponent if (symbol === this.OTHER_KEY) { symbol = 'Other'; } else if (symbol === UNKNOWN_KEY) { - symbol = 'Unknown'; + symbol = 'No data available'; } const name = this.positions[symbol]?.name;