1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Fixed mobile version build

This commit is contained in:
Laurent Cozic 2020-08-01 18:56:56 +01:00
parent ab0538df43
commit baea44cbd6
2 changed files with 5 additions and 6 deletions

View File

@ -32,6 +32,7 @@ const MigrationService = require('lib/services/MigrationService');
const CommandService = require('lib/services/CommandService').default;
const TemplateUtils = require('lib/TemplateUtils');
const CssUtils = require('lib/CssUtils');
const resourceEditWatcherReducer = require('lib/services/ResourceEditWatcher/reducer').default;
const commands = [
require('./gui/Header/commands/focusSearch'),
@ -280,6 +281,10 @@ class Application extends BaseApplication {
throw error;
}
newState = resourceEditWatcherReducer(newState, action);
CommandService.instance().scheduleMapStateToProps(newState);
return super.reducer(newState, action);
}

View File

@ -2,8 +2,6 @@ const Note = require('lib/models/Note.js');
const Folder = require('lib/models/Folder.js');
const ArrayUtils = require('lib/ArrayUtils.js');
const { ALL_NOTES_FILTER_ID } = require('lib/reserved-ids');
const CommandService = require('lib/services/CommandService').default;
const resourceEditWatcherReducer = require('lib/services/ResourceEditWatcher/reducer').default;
const defaultState = {
notes: [],
@ -1036,10 +1034,6 @@ const reducer = (state = defaultState, action) => {
newState = handleHistory(newState, action);
}
newState = resourceEditWatcherReducer(newState, action);
CommandService.instance().scheduleMapStateToProps(newState);
return newState;
};