From 9c19f9bc0c00d21b711a47770440b29008ea671b Mon Sep 17 00:00:00 2001 From: sumit_chaturvedi Date: Mon, 2 Jun 2025 09:03:31 +0530 Subject: [PATCH] srn build fix --- ui/components/ui/custom/custom-dropdown-filter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/components/ui/custom/custom-dropdown-filter.tsx b/ui/components/ui/custom/custom-dropdown-filter.tsx index 8a686c0eab..a357798c71 100644 --- a/ui/components/ui/custom/custom-dropdown-filter.tsx +++ b/ui/components/ui/custom/custom-dropdown-filter.tsx @@ -113,7 +113,7 @@ export const CustomDropdownFilter = ({ const entity = filter.valueLabelMapping?.find((entry) => entry[value])?.[ value ]; - return entity?.alias || entity?.uid || value; + return entity?.providerInfo?.alias || entity?.providerInfo?.uid || value; }, [filter.valueLabelMapping], );