From 7696f21eaa4da11a215d9968403f532c4c894ba6 Mon Sep 17 00:00:00 2001 From: Scarriffle Date: Thu, 30 Jul 2026 20:08:28 +0200 Subject: [PATCH] iOS: Charts schreiben 'Artikeleinheiten' aus statt 'AE' Co-Authored-By: Claude Opus 4.8 --- ios/Sources/ChartCards.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/Sources/ChartCards.swift b/ios/Sources/ChartCards.swift index edfb9f7..abf46fc 100644 --- a/ios/Sources/ChartCards.swift +++ b/ios/Sources/ChartCards.swift @@ -129,7 +129,7 @@ struct ExpiryDonutCard: View { Segment(label: "Bald ablaufend", value: s.soon, color: ExpiryColor.soon), Segment(label: "Abgelaufen", value: s.expired, color: ExpiryColor.expired), Segment(label: "Ohne MHD", value: s.noDate, color: ExpiryColor.noDate), - ], einheit: "AE") + ], einheit: "Artikeleinheiten") } } } @@ -159,7 +159,7 @@ struct CategoryDonutCard: View { if restWert > 0 { segmente.append(Segment(label: "Übrige", value: restWert, color: .gray)) } - return ProportionChart(segments: segmente, einheit: "AE") + return ProportionChart(segments: segmente, einheit: "Artikeleinheiten") } } }