From 0bbc90cb5cffd15fa71387a17e83d3a7fc10f8fa Mon Sep 17 00:00:00 2001 From: artem Date: Sat, 12 Sep 2026 21:48:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20=D0=BF?= =?UTF-8?q?=D0=BE=20=D0=B3=D1=80=D0=B0=D1=84=D0=B8=D0=BA=D0=B0=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/workouts/components/WorkoutItem.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/workouts/components/WorkoutItem.vue b/src/pages/workouts/components/WorkoutItem.vue index b396029..9e75809 100644 --- a/src/pages/workouts/components/WorkoutItem.vue +++ b/src/pages/workouts/components/WorkoutItem.vue @@ -737,7 +737,6 @@ const buildChartOptions = ( const d3 = new Date(labels[i] as string); if (start === 0 && i !== 0 && d3 > d1) { start = i; - break; } if (d3 > d2) { end = i; @@ -748,7 +747,6 @@ const buildChartOptions = ( for (let i = 0; i < labels.length; i++) { if (i !== 0 && Number(labels[i]) > min) { start = i; - break; } if (Number(labels[i]) > max) { end = i;