Skip to content

Commit

Permalink
🐛 Fixes tile move bug (#366)
Browse files Browse the repository at this point in the history
Closes #366. This issue was caused by item IDs not being regenerated after the previous move, causing the second part of the move operation (delete previous) to fail. It was fixed by calling regenerate item IDs after item removal
  • Loading branch information
Lissy93 committed Dec 29, 2021
1 parent 93a6ec0 commit 3cbf794
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ const store = new Vuex.Store({
});
}
});
config.sections = applyItemId(config.sections);
state.config = config;
},
[SET_THEME](state, theme) {
Expand Down

0 comments on commit 3cbf794

Please sign in to comment.