From 69fe1c94b4af5fd8a61552b2110cd6efc69eb481 Mon Sep 17 00:00:00 2001 From: Julia Gru <56249914+julczka@users.noreply.github.com> Date: Fri, 3 Mar 2023 17:47:07 +0100 Subject: [PATCH] remove undefined property --- .../src/backoffice/shared/components/donut-chart/donut-chart.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/donut-chart/donut-chart.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/donut-chart/donut-chart.ts index 12bb0385a7..916ce79310 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/donut-chart/donut-chart.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/donut-chart/donut-chart.ts @@ -252,7 +252,6 @@ export class UmbDonutChartElement extends LitElement { const circle = this.circles[index]; this._detailName = circle.name; this._detailAmount = circle.percent; - this.detailPercent = circle.percent; this._detailColor = circle.color; this._detailKind = circle.kind; }