bugfix: delete component sometimes breaks navigation
This commit is contained in:
parent
ec594234d8
commit
fee6985f33
|
@ -38,15 +38,21 @@
|
||||||
|
|
||||||
// Loop through each ID
|
// Loop through each ID
|
||||||
ids.forEach(id => {
|
ids.forEach(id => {
|
||||||
// Find ID and select it
|
// Find ID
|
||||||
componentToSelect = currentChildren.find(child => child._id === id)
|
const component = currentChildren.find(child => child._id === id)
|
||||||
|
|
||||||
|
// If it does not exist, ignore (use last valid route)
|
||||||
|
if (!component) return
|
||||||
|
|
||||||
|
componentToSelect = component
|
||||||
|
|
||||||
// Update childrens array to selected components children
|
// Update childrens array to selected components children
|
||||||
currentChildren = componentToSelect._children
|
currentChildren = componentToSelect._children
|
||||||
})
|
})
|
||||||
|
|
||||||
// Select Component!
|
// Select Component!
|
||||||
store.selectComponent(componentToSelect)
|
if (componentToSelect)
|
||||||
|
store.selectComponent(componentToSelect)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue