From 791c60015139fcba5accf8a842c117651362b0bc Mon Sep 17 00:00:00 2001 From: Chen-I Lim <46905241+chenilim@users.noreply.github.com> Date: Wed, 25 Aug 2021 10:48:51 -0700 Subject: [PATCH] Fix #1086. Update channel header button hint. (#1103) Co-authored-by: Hossein --- mattermost-plugin/webapp/src/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mattermost-plugin/webapp/src/index.tsx b/mattermost-plugin/webapp/src/index.tsx index 42bc6d5f2..3d947024e 100644 --- a/mattermost-plugin/webapp/src/index.tsx +++ b/mattermost-plugin/webapp/src/index.tsx @@ -121,7 +121,7 @@ export default class Plugin { const currentChannel = mmStore.getState().entities.channels.currentChannelId window.open(`${window.location.origin}/boards/workspace/${currentChannel}`) } - this.channelHeaderButtonId = registry.registerChannelHeaderButtonAction(, goToFocalboardWorkspace, '', 'Focalboard Workspace') + this.channelHeaderButtonId = registry.registerChannelHeaderButtonAction(, goToFocalboardWorkspace, '', 'Boards') this.registry.registerCustomRoute('go-to-current-workspace', () => { const history = useHistory() @@ -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}`) - }, '', 'Boards Workspace') + }, '', 'Boards') this.registry.registerCustomRoute('/', MainApp) } }