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], );