From 56956d878684647c34c6e8d3267e132d0ed2c362 Mon Sep 17 00:00:00 2001 From: guru_sainath Date: Tue, 18 Jun 2024 16:15:26 +0530 Subject: [PATCH] fix: updated the ui inconsistancy in active cycle estimate dropdown (#4860) --- web/core/components/cycles/active-cycle/productivity.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/web/core/components/cycles/active-cycle/productivity.tsx b/web/core/components/cycles/active-cycle/productivity.tsx index b23958f2e..1164c9323 100644 --- a/web/core/components/cycles/active-cycle/productivity.tsx +++ b/web/core/components/cycles/active-cycle/productivity.tsx @@ -54,13 +54,12 @@ export const ActiveCycleProductivity: FC = observe

Issue burndown

{areEstimateEnabledByProjectId(projectId) && ( - <> +
{cycleBurnDownChartOptions.find((v) => v.value === plotType)?.label ?? "None"}} onChange={onChange} maxHeight="lg" - className="m-0 p-0" > {cycleBurnDownChartOptions.map((item) => ( @@ -69,7 +68,7 @@ export const ActiveCycleProductivity: FC = observe ))} {loader && } - +
)}