[WEB-4787] fix: changed issue to work item in cycles dropdown (#7706)

This commit is contained in:
Akshita Goyal 2025-09-03 14:11:30 +05:30 committed by GitHub
parent b99ddc24e7
commit 59ace4f411
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,6 +38,6 @@ export const EstimateTypeDropdown = observer((props: TProps) => {
</CustomSelect> </CustomSelect>
</div> </div>
) : showDefault ? ( ) : showDefault ? (
<span className="capitalize">{value}</span> <span className="capitalize">{cycleEstimateOptions.find((v) => v.value === value)?.label ?? value}</span>
) : null; ) : null;
}); });