From 5f8e08b79ec3913ff486832b7ca0d678a20ac2a2 Mon Sep 17 00:00:00 2001 From: Chen-I Lim <46905241+chenilim@users.noreply.github.com> Date: Tue, 24 Aug 2021 11:48:29 -0700 Subject: [PATCH] Fix #1086: Update channel header button hint (#1087) --- mattermost-plugin/webapp/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mattermost-plugin/webapp/src/index.tsx b/mattermost-plugin/webapp/src/index.tsx index 02980b7ed..42bc6d5f2 100644 --- a/mattermost-plugin/webapp/src/index.tsx +++ b/mattermost-plugin/webapp/src/index.tsx @@ -147,7 +147,7 @@ export default class Plugin { this.channelHeaderButtonId = registry.registerChannelHeaderButtonAction(, () => { const currentChannel = mmStore.getState().entities.channels.currentChannelId window.open(`${window.location.origin}/plug/focalboard/workspace/${currentChannel}`) - }, '', 'Focalboard Workspace') + }, '', 'Boards Workspace') this.registry.registerCustomRoute('/', MainApp) } }