aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/containers
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-08-02 11:41:51 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-08-02 11:41:51 +0200
commit6297d46f370092598d2ebb973bb69f2c368d7904 (patch)
tree52bdd4885537ca2fb20be32b2db9c8c4dc95f908 /src/features/todos/containers
parentAdd separator to todos panel (diff)
downloadferdium-app-6297d46f370092598d2ebb973bb69f2c368d7904.tar.gz
ferdium-app-6297d46f370092598d2ebb973bb69f2c368d7904.tar.zst
ferdium-app-6297d46f370092598d2ebb973bb69f2c368d7904.zip
Add option to toggle the Todos panel
Diffstat (limited to 'src/features/todos/containers')
-rw-r--r--src/features/todos/containers/TodosScreen.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/features/todos/containers/TodosScreen.js b/src/features/todos/containers/TodosScreen.js
index 2b81bd728..48acd19f4 100644
--- a/src/features/todos/containers/TodosScreen.js
+++ b/src/features/todos/containers/TodosScreen.js
@@ -27,6 +27,8 @@ class TodosScreen extends Component {
27 <ErrorBoundary> 27 <ErrorBoundary>
28 <TodosWebview 28 <TodosWebview
29 authToken={stores.user.authToken} 29 authToken={stores.user.authToken}
30 isVisible={todosStore.isTodosPanelVisible}
31 togglePanel={todoActions.toggleTodosPanel}
30 handleClientMessage={todoActions.handleClientMessage} 32 handleClientMessage={todoActions.handleClientMessage}
31 setTodosWebview={webview => todoActions.setTodosWebview({ webview })} 33 setTodosWebview={webview => todoActions.setTodosWebview({ webview })}
32 width={todosStore.width} 34 width={todosStore.width}