From 9068c624eee3b54446ce94e6d93880f8d2b774dd Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 14 Jun 2021 10:33:00 +0200 Subject: [PATCH] Fix form favicon --- www/common/notify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/notify.js b/www/common/notify.js index ac8461104..d289d6da8 100644 --- a/www/common/notify.js +++ b/www/common/notify.js @@ -1,7 +1,7 @@ define(['/api/config'], function (ApiConfig) { var Module = {}; - var apps = ['code', 'slide', 'pad', 'kanban', 'whiteboard', 'sheet', 'poll', 'teams']; + var apps = ['code', 'slide', 'pad', 'kanban', 'whiteboard', 'sheet', 'poll', 'teams', 'form']; var app = window.location.pathname.slice(1, -1); // remove "/" at the beginnin and the end var suffix = apps.indexOf(app) !== -1 ? '-'+app : '';