aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/containers/TodosScreen.js
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-07-31 17:08:29 +0200
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-07-31 17:08:29 +0200
commitbd49d59008d64db13e3f37277ec873a3a464ef9e (patch)
tree7d4f4a943477e543abbcacd2ceb2ac0002054910 /src/features/todos/containers/TodosScreen.js
parentMerge branch 'develop' into feature/todos (diff)
downloadferdium-app-bd49d59008d64db13e3f37277ec873a3a464ef9e.tar.gz
ferdium-app-bd49d59008d64db13e3f37277ec873a3a464ef9e.tar.zst
ferdium-app-bd49d59008d64db13e3f37277ec873a3a464ef9e.zip
MVP for service <-> todos integration
Diffstat (limited to 'src/features/todos/containers/TodosScreen.js')
-rw-r--r--src/features/todos/containers/TodosScreen.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/features/todos/containers/TodosScreen.js b/src/features/todos/containers/TodosScreen.js
index 0759c22db..5b7c4531b 100644
--- a/src/features/todos/containers/TodosScreen.js
+++ b/src/features/todos/containers/TodosScreen.js
@@ -18,6 +18,7 @@ class TodosScreen extends Component {
18 actions: PropTypes.shape({ 18 actions: PropTypes.shape({
19 todos: PropTypes.shape({ 19 todos: PropTypes.shape({
20 resize: PropTypes.func.isRequired, 20 resize: PropTypes.func.isRequired,
21 handleIPCMessage: PropTypes.func.isRequired,
21 }), 22 }),
22 }).isRequired, 23 }).isRequired,
23 }; 24 };
@@ -33,6 +34,8 @@ class TodosScreen extends Component {
33 <ErrorBoundary> 34 <ErrorBoundary>
34 <TodosWebview 35 <TodosWebview
35 authToken={stores.user.authToken} 36 authToken={stores.user.authToken}
37 handleClientMessage={actions.todos.handleClientMessage}
38 setTodosWebview={webview => actions.todos.setTodosWebview({ webview })}
36 width={stores.todos.width} 39 width={stores.todos.width}
37 minWidth={TODOS_MIN_WIDTH} 40 minWidth={TODOS_MIN_WIDTH}
38 resize={width => actions.todos.resize({ width })} 41 resize={width => actions.todos.resize({ width })}