From ead53e2650513b7833eb0c8d6997b9b8136bc83c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Wed, 10 Mar 2021 10:10:26 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20fix=20folder=20stats=20order?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Stats.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stats.vue b/src/Stats.vue index 10095bb..77b5008 100644 --- a/src/Stats.vue +++ b/src/Stats.vue @@ -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 }