From 83a5a54801c0f148dbe910e6b1648c85ee1ec6dc Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Tue, 25 Jun 2019 14:52:09 +0100 Subject: [PATCH] Removed "Unsupported browser" warning for Chromium-based Edge no issue - Edge is dropping it's own engine and switching to Chromium which has full support in the editor --- ghost/admin/app/routes/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/routes/editor.js b/ghost/admin/app/routes/editor.js index f027f33e91..75140d95f3 100644 --- a/ghost/admin/app/routes/editor.js +++ b/ghost/admin/app/routes/editor.js @@ -27,7 +27,7 @@ export default AuthenticatedRoute.extend(ShortcutsRoute, { this._super(...arguments); // edge has known issues - if (this.userAgent.browser.isEdge) { + if (this.userAgent.browser.isEdge && this.userAgent.parser.getEngine().name === 'EdgeHTML') { this.notifications.showAlert( htmlSafe('Microsoft Edge is not currently supported. Please switch to Ghost Desktop or a recent version of Chrome/Firefox/Safari.'), {type: 'info', key: 'koenig.browserSupport'}