This commit is contained in:
2021-11-09 22:48:29 +01:00
parent bfca6d2afc
commit a63e1321b0
3 changed files with 34 additions and 42 deletions

View File

@@ -216,11 +216,11 @@ const store = createStore({
//// excluded
addExcludedNode(state, id) {
console.log('==> exclude list: +', id)
//console.log('==> exclude list: +', id)
state.excludedNodesIds.push(id)
},
removeExcludedNode(state, id) {
console.log('<== exclude list: -', id)
//console.log('<== exclude list: -', id)
state.excludedNodesIds = state.excludedNodesIds.filter(e => e !== id)
},