forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
af2d36a3c9
commit
8807894890
1 changed files with 1 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue