From 5249e5552241d061495f8594b3321f3dd8a9501f Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Thu, 27 Jan 2022 16:48:50 +0100 Subject: [PATCH] Update the fallback icon name (#639) --- angular/src/components/icon.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angular/src/components/icon.component.ts b/angular/src/components/icon.component.ts index ca1f2555..c5704f27 100644 --- a/angular/src/components/icon.component.ts +++ b/angular/src/components/icon.component.ts @@ -96,7 +96,7 @@ export class IconComponent implements OnChanges { if (this.imageEnabled && isWebsite) { try { this.image = this.iconsUrl + "/" + Utils.getHostname(hostnameUri) + "/icon.png"; - this.fallbackImage = "images/fa-globe.png"; + this.fallbackImage = "images/bwi-globe.png"; } catch (e) { // Ignore error since the fallback icon will be shown if image is null. }