Skip to content

Commit

Permalink
Merge pull request #361 from stephanietuerk/hotfix-explore-selections
Browse files Browse the repository at this point in the history
fix no count percent update
  • Loading branch information
stephanietuerk authored Jan 4, 2024
2 parents ccf9cfe + d7f0909 commit b84f7d0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,10 @@ export class ExploreDataService extends Unsubscribe {
aggregatedData.forEach((x) => {
this.setPercentValueOnDatum(x, lineDef, data, categoriesAccessor);
});
} else {
aggregatedData.forEach((x) => {
x.percent = undefined;
});
}
return aggregatedData;
})
Expand Down

0 comments on commit b84f7d0

Please sign in to comment.