Skip to content

Commit

Permalink
➕ merge pull request #278 from devmount/fix-folder-stats-order
Browse files Browse the repository at this point in the history
🔨 fix folder stats order
  • Loading branch information
devmount authored Mar 10, 2021
2 parents ff67d48 + ead53e2 commit 79b9d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2079,8 +2079,8 @@ export default {
})
return {
datasets: [
{ label: this.$t("stats.mailsSent"), data: ds, color: "rgb(" + hexToRgb(accentColors[0]) + ")" },
{ label: this.$t("stats.mailsReceived"), data: dr, color: "rgb(" + hexToRgb(accentColors[1]) + ")" },
{ label: this.$t("stats.mailsSent"), data: ds, color: "rgb(" + hexToRgb(accentColors[0]) + ")" },
],
labels: labels
}
Expand Down

0 comments on commit 79b9d61

Please sign in to comment.