diff --git a/AdminWebsite/AdminWebsite/ClientApp/src/app/services/device-type.ts b/AdminWebsite/AdminWebsite/ClientApp/src/app/services/device-type.ts index b83e558c7..b693ca0ea 100644 --- a/AdminWebsite/AdminWebsite/ClientApp/src/app/services/device-type.ts +++ b/AdminWebsite/AdminWebsite/ClientApp/src/app/services/device-type.ts @@ -20,7 +20,7 @@ export class DeviceType { } isSupportedBrowser(): boolean { - const supportedBrowsers = [BROWSERS.CHROME, BROWSERS.MS_EDGE_CHROMIUM]; + const supportedBrowsers = [BROWSERS.CHROME, BROWSERS.MS_EDGE_CHROMIUM, BROWSERS.MS_EDGE, BROWSERS.FIREFOX]; const browser = this.deviceDetectorService.browser; return supportedBrowsers.findIndex(x => x.toUpperCase() === browser.toUpperCase()) > -1; }