Remove leftovers.
This commit is contained in:
parent
a5d1b7a651
commit
1a77b0ae00
|
@ -138,7 +138,7 @@ const initialise = (store, initial) => async () => {
|
||||||
shadowHierarchy, initial.currentNode.nodeId
|
shadowHierarchy, initial.currentNode.nodeId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
console.log(initial)
|
|
||||||
store.set(initial);
|
store.set(initial);
|
||||||
return initial;
|
return initial;
|
||||||
}
|
}
|
||||||
|
@ -712,7 +712,6 @@ const addChildComponent = store => component => {
|
||||||
children ?
|
children ?
|
||||||
children.concat(component_definition) :
|
children.concat(component_definition) :
|
||||||
[component_definition];
|
[component_definition];
|
||||||
console.log(component_definition)
|
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
})
|
})
|
||||||
|
@ -721,7 +720,6 @@ const addChildComponent = store => component => {
|
||||||
const selectComponent = store => component => {
|
const selectComponent = store => component => {
|
||||||
store.update(s => {
|
store.update(s => {
|
||||||
s.currentComponentInfo = component;
|
s.currentComponentInfo = component;
|
||||||
console.log(s)
|
|
||||||
return s;
|
return s;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue