Skip to content

Commit

Permalink
Topology Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgubaidullin committed Jul 10, 2024
1 parent 97ec347 commit 590a7eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion karavan-designer/src/topology/TopologyApi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export function getModel(files: IntegrationFile[], grouping?: boolean): Model {
edges.push(...getRestEdges(trestns, tins));
edges.push(...getInternalEdges(tons, tins));
edges.push(...getInternalEdges(trcons, tins));
edges.push(...getExternalEdges(tons,tins));
// edges.push(...getExternalEdges(tons,tins));

return {nodes: nodes, edges: edges, graph: {id: 'g1', type: 'graph', layout: 'Dagre'}};
}
Expand Down
2 changes: 1 addition & 1 deletion karavan-designer/src/topology/TopologyStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const useTopologyStore = createWithEqualityFn<TopologyState>((set) => ({
return {nodeData: nodeData};
});
},
showGroups: false,
showGroups: true,
setShowGroups: (showGroups: boolean) => {
set((state: TopologyState) => {
return {showGroups: showGroups};
Expand Down

0 comments on commit 590a7eb

Please sign in to comment.