aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-17 20:37:41 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-17 20:37:41 +0200
commit16c183910c2917c58be39e6d25e64ea00cae38d4 (patch)
tree228058cee613a8987561104a4184ff5b0f244962 /src/components
parentUpdate i18n (diff)
parentMerge branch 'develop' (diff)
downloadferdium-app-16c183910c2917c58be39e6d25e64ea00cae38d4.tar.gz
ferdium-app-16c183910c2917c58be39e6d25e64ea00cae38d4.tar.zst
ferdium-app-16c183910c2917c58be39e6d25e64ea00cae38d4.zip
Merge branch 'master' of https://github.com/meetfranz/franz into meetfranz-master
Diffstat (limited to 'src/components')
-rw-r--r--src/components/layout/Sidebar.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js
index d26eb852d..52de16508 100644
--- a/src/components/layout/Sidebar.js
+++ b/src/components/layout/Sidebar.js
@@ -136,8 +136,9 @@ export default @inject('stores', 'actions') @observer class Sidebar extends Comp
136 onClick={() => { 136 onClick={() => {
137 todoActions.toggleTodosPanel(); 137 todoActions.toggleTodosPanel();
138 this.updateToolTip(); 138 this.updateToolTip();
139 gaEvent(GA_CATEGORY_TODOS, 'toggleDrawer', 'sidebar');
139 }} 140 }}
140 className="sidebar__button sidebar__button--workspaces" 141 className={`sidebar__button sidebar__button--todos ${todosStore.isTodosPanelVisible ? 'is-active' : ''}`}
141 data-tip={`${intl.formatMessage(todosToggleMessage)} (${ctrlKey}+T)`} 142 data-tip={`${intl.formatMessage(todosToggleMessage)} (${ctrlKey}+T)`}
142 > 143 >
143 <i className="mdi mdi-check-all" /> 144 <i className="mdi mdi-check-all" />