Skip to content

Commit

Permalink
Merge pull request #309 from oslokommune/develop
Browse files Browse the repository at this point in the history
Release 2.5.3
  • Loading branch information
aulonm authored Oct 27, 2021
2 parents f4781f3 + 90f3aef commit 5ceca83
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format

## [UNRELEASED]

## [2.5.3] 2021-10-27

### Fixed

- KPI graph did not show if one progress object had a value equal to 0

## [2.5.2] 2021-10-19

### Fixed
Expand Down
1 change: 1 addition & 0 deletions functions/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
.runtimeconfig.json
.runtimeconfig-dev.json
origo-okr-tracker-private-key.json
okr-tracker-production-private-key.json
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "okr-tracker",
"version": "2.5.2",
"version": "2.5.3",
"private": true,
"scripts": {
"dev": "firebase emulators:start --import=./mock_data & vite",
Expand Down
3 changes: 1 addition & 2 deletions src/views/KpiHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,7 @@ export default {
const [startValue, targetValue] = extent(this.filteredProgress.map(({ value }) => value));
const [startDate, endDate] = extent(this.filteredProgress.map(({ timestamp }) => timestamp));
if (!this.graph || !startValue || !targetValue) return;
if (!this.graph || !startValue === undefined || !targetValue === undefined) return;
this.graph.render(
{
startValue,
Expand Down

0 comments on commit 5ceca83

Please sign in to comment.