🐛 Fixes tile move bug (#366)

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
This commit is contained in:
Alicia Sykes 2021-12-29 22:14:11 +00:00
parent 93a6ec08ba
commit 3cbf7949c3
1 changed files with 1 additions and 0 deletions

View File

@ -205,6 +205,7 @@ const store = new Vuex.Store({
});
}
});
config.sections = applyItemId(config.sections);
state.config = config;
},
[SET_THEME](state, theme) {