diff --git a/web/packages/shared/components/UnifiedResources/shared/guessAppIcon.ts b/web/packages/shared/components/UnifiedResources/shared/guessAppIcon.ts index fa93ffd5e3670..b49ffc816da0d 100644 --- a/web/packages/shared/components/UnifiedResources/shared/guessAppIcon.ts +++ b/web/packages/shared/components/UnifiedResources/shared/guessAppIcon.ts @@ -56,7 +56,6 @@ export function guessAppIcon(resource: UnifiedResourceApp): ResourceIconName { } // Help match brands with sub brands: - if (match('adobe', app)) { if (match('creative', app)) return 'adobecreativecloud'; if (match('marketo', app)) return 'adobemarketo'; @@ -87,6 +86,12 @@ export function guessAppIcon(resource: UnifiedResourceApp): ResourceIconName { if (match('word', app)) return 'microsoftword'; return 'microsoft'; // generic } + if (match('gcp', app)) { + return 'googlecloud'; + } + if (match('azure', app)) { + return 'azure'; + } // Try matching by iterating through all the icon names const matchingIcon = iconNames.find(iconName => match(iconName, app));