From ab8b2296c3ef0ed3710e7f2afdf2bda353dfd153 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 12 Nov 2022 20:54:37 +0100 Subject: [PATCH] fix truncate summary and adapt graph size --- frontend/src/lib/components/graph/FlowGraph.svelte | 4 ++-- frontend/src/lib/components/graph/util.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/lib/components/graph/FlowGraph.svelte b/frontend/src/lib/components/graph/FlowGraph.svelte index 2632df2999..9f36a39859 100644 --- a/frontend/src/lib/components/graph/FlowGraph.svelte +++ b/frontend/src/lib/components/graph/FlowGraph.svelte @@ -154,7 +154,7 @@ data: { html: `
-
+
${title}
@@ -192,7 +192,7 @@ const item = getConvertedFlowModule(module, loop.items) item && loop.items.push(item) }) - loop.items.push(createVirtualNode(getParentIds(loop.items), 'Collection of the results')) + loop.items.push(createVirtualNode(getParentIds(loop.items), "Collect iterations' results")) return loop } diff --git a/frontend/src/lib/components/graph/util.ts b/frontend/src/lib/components/graph/util.ts index 21c6e363ea..24d3022143 100644 --- a/frontend/src/lib/components/graph/util.ts +++ b/frontend/src/lib/components/graph/util.ts @@ -1,5 +1,5 @@ export const NODE = { - width: 200, + width: 300, height: 35, gap: { horizontal: 40,