This commit is contained in:
syuilo 2018-06-09 22:25:15 +09:00
parent af2d36a3c9
commit 8807894890
1 changed files with 1 additions and 0 deletions

View File

@ -180,6 +180,7 @@ export default (os: MiOS) => new Vuex.Store({
removeDeckColumn(state, id) {
state.deck.columns = state.deck.columns.filter(c => c.id != id);
state.deck.layout = state.deck.layout.map(ids => ids.filter(x => x != id));
state.deck.layout = state.deck.layout.filter(ids => ids.length > 0);
},
swapDeckColumn(state, x) {