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") } } }