Skip to content

Commit

Permalink
Typo in metric pie chart tooltip ('Uknown'). Fixes #857.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Dec 11, 2019
1 parent 77bdbeb commit 14a119b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/frontend/src/dashboard/StatusPieChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function StatusPieChart(props) {
{ y: props.green, label: `Target met: ${nr_metrics_label(props.green)}` },
{ y: props.yellow, label: `Near target: ${nr_metrics_label(props.yellow)}` },
{ y: props.grey, label: `Technical debt target met: ${nr_metrics_label(props.grey)}` },
{ y: props.white, label: `Uknown: ${nr_metrics_label(props.white)}` }
{ y: props.white, label: `Unknown: ${nr_metrics_label(props.white)}` }
]}
/>
}
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

<!-- The line "## <square-bracket>Unreleased</square-bracket>" is replaced by the ci/release.py script with the new release version and release date. -->

## [Unreleased]

### Fixed

- Typo in metric pie chart tooltip ("Uknown"). Fixes [#857](https://github.com/ICTU/quality-time/issues/857).

## [1.2.0] - [2019-12-10]

### Added
Expand Down

0 comments on commit 14a119b

Please sign in to comment.