fixed wrong maths

This commit is contained in:
andy 2022-06-23 19:36:16 +01:00
parent a1bd1ab62d
commit 58f27a4181

View File

@ -27,7 +27,7 @@ export let ArtistBreakdownChartCard: Vue.Component = {
return this.albumPercent - this.trackPercent;
},
artistPercent() {
return 100 - this.albumDiff + this.trackPercent;
return 100 - this.albumDiff - this.trackPercent;
}
},
template: