fix: some bundle stuff

This commit is contained in:
Braks
2021-07-10 14:28:21 +02:00
parent e87d13afb5
commit f685c7a20a
6 changed files with 13 additions and 18 deletions
+2 -2
View File
@@ -268,14 +268,14 @@ const parseElements = (nodes: Node[], edges: Edge[]): Elements => {
export const onLoadGetElements = (currentStore: Store<'revue-flow', ReactFlowState>) => {
return (): Elements => {
return parseElements(currentStore.nodes ?? [], currentStore.edges ?? []);
return parseElements(currentStore.nodes || [], currentStore.edges || []);
};
};
export const onLoadToObject = (currentStore: Store<'revue-flow', ReactFlowState>) => {
return (): FlowExportObject => {
return {
elements: parseElements(currentStore.nodes ?? [], currentStore.edges ?? []),
elements: parseElements(currentStore.nodes || [], currentStore.edges || []),
position: [currentStore.transform[0], currentStore.transform[1]],
zoom: currentStore.transform[2]
};