From e4ec4ae92bb5324bdf9281248ee90e45fd57716b Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Tue, 1 May 2018 10:09:36 +0100 Subject: [PATCH] Mobile: Fix action button when note is being edited. --- ReactNativeClient/lib/components/screens/note.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactNativeClient/lib/components/screens/note.js b/ReactNativeClient/lib/components/screens/note.js index f3f882ba2..3c5f5a26a 100644 --- a/ReactNativeClient/lib/components/screens/note.js +++ b/ReactNativeClient/lib/components/screens/note.js @@ -497,7 +497,7 @@ class NoteScreenComponent extends BaseScreenComponent { }, }); - if (this.state.mode == 'edit') return ; + if (this.state.mode == 'edit') return null;//; return }