From cbfb4cb36f3daae166812ea1981fb65d6c6289fb Mon Sep 17 00:00:00 2001 From: Scott Bishel Date: Tue, 28 Sep 2021 07:50:23 -0600 Subject: [PATCH] GH-1312 - Update title when running a plugin (#1317) * Update title when running a plugin * Update webapp/src/pages/boardPage.tsx Co-authored-by: Hossein --- webapp/src/pages/boardPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp/src/pages/boardPage.tsx b/webapp/src/pages/boardPage.tsx index 5935963a4..425ffde6f 100644 --- a/webapp/src/pages/boardPage.tsx +++ b/webapp/src/pages/boardPage.tsx @@ -131,6 +131,8 @@ const BoardPage = (props: Props) => { title += ` | ${activeView.title}` } document.title = title + } else if (Utils.isFocalboardPlugin()) { + document.title = 'Boards - Mattermost' } else { document.title = 'Focalboard' }