Skip to content

Commit f62ad59

Browse files
committed
fix: review comments
1 parent 98534d3 commit f62ad59

File tree

1 file changed

+1
-1
lines changed
  • src/Pages/GlobalConfigurations/DeploymentCharts

1 file changed

+1
-1
lines changed

src/Pages/GlobalConfigurations/DeploymentCharts/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const convertDeploymentChartListToChartType = (data: DeploymentChartListD
3232
{} as Record<string, DeploymentChartType>,
3333
)
3434
const result = Object.values(chartMap).map((element) => {
35-
element.versions?.sort((a, b) => versionComparatorBySortOrder(a, b, 'version', SortingOrder.DESC))
35+
element.versions.sort((a, b) => versionComparatorBySortOrder(a, b, 'version', SortingOrder.DESC))
3636
return element
3737
})
3838
return result

0 commit comments

Comments
 (0)