From 4fd5d452a378b0ff7c937ae9670356352728f4fc Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Sat, 11 Jun 2022 08:56:22 +0200 Subject: [PATCH] =?UTF-8?q?build:=20=F0=9F=92=9A=20Attempt=20to=20fix=20ca?= =?UTF-8?q?ched=20prisma=20models?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/shared/Graph/Nodes/GroupNode/GroupNode.tsx | 2 +- turbo.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/builder/components/shared/Graph/Nodes/GroupNode/GroupNode.tsx b/apps/builder/components/shared/Graph/Nodes/GroupNode/GroupNode.tsx index 5201abfe2..380988300 100644 --- a/apps/builder/components/shared/Graph/Nodes/GroupNode/GroupNode.tsx +++ b/apps/builder/components/shared/Graph/Nodes/GroupNode/GroupNode.tsx @@ -45,7 +45,7 @@ export const GroupNode = ({ group, groupIndex }: Props) => { const isPreviewing = previewingEdge?.from.groupId === group.id || (previewingEdge?.to.groupId === group.id && - isNotDefined(previewingEdge.to.groupId)) + isNotDefined(previewingEdge.to.blockId)) const isStartGroup = isDefined(group.blocks[0]) && group.blocks[0].type === 'start' diff --git a/turbo.json b/turbo.json index 65bbe155e..681b7d053 100644 --- a/turbo.json +++ b/turbo.json @@ -3,7 +3,7 @@ "pipeline": { "build": { "dependsOn": ["^build"], - "outputs": [".next/**", "dist/**", "build/**"] + "outputs": [".next/**", "dist/**", "build/**", "node_modules/@prisma/**"] }, "test": { "dependsOn": [],