1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Mobile: Apply tag duplication fix to mobile too

This commit is contained in:
Laurent Cozic
2019-02-24 18:02:50 +00:00
parent 081e1c5b62
commit 998011ff43
3 changed files with 28 additions and 15 deletions

View File

@@ -92,7 +92,7 @@ const generalMiddleware = store => next => async (action) => {
const result = next(action);
const newState = store.getState();
reduxSharedMiddleware(store, next, action);
await reduxSharedMiddleware(store, next, action);
if (action.type == "NAV_GO") Keyboard.dismiss();
@@ -453,7 +453,7 @@ async function initialize(dispatch) {
await FoldersScreenUtils.refreshFolders();
const tags = await Tag.all();
const tags = await Tag.allWithNotes();
dispatch({
type: 'TAG_UPDATE_ALL',