diff --git a/src/ui/store/actions.js b/src/ui/store/actions.js index 3241ee1497..6c01eb9bbf 100644 --- a/src/ui/store/actions.js +++ b/src/ui/store/actions.js @@ -74,6 +74,12 @@ export const actionsDefinition = { if (oldData.localRoot !== data.localRoot) { await account.init() } + if (oldData.bookmark_file !== data.bookmark_file) { + await account.init() + } + if (oldData.bookmark_file_type !== data.bookmark_file_type) { + await account.init() + } commit(mutations.STORE_ACCOUNT_DATA, {id, data}) }, async [actions.TRIGGER_SYNC]({ commit, dispatch, state }, accountId) {