From 92a368f1728f411238c09a17589b0559cdfe9cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=98=84=EC=A1=B0?= Date: Fri, 4 Oct 2024 02:58:21 +0900 Subject: [PATCH] =?UTF-8?q?Desing:=20=EB=94=94=EC=9E=90=EC=9D=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/WorkspaceSidebar/ProjectStructure.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/WorkspaceSidebar/ProjectStructure.tsx b/frontend/src/components/WorkspaceSidebar/ProjectStructure.tsx index b6185e4..8341791 100644 --- a/frontend/src/components/WorkspaceSidebar/ProjectStructure.tsx +++ b/frontend/src/components/WorkspaceSidebar/ProjectStructure.tsx @@ -216,7 +216,6 @@ export default function ProjectStructure({ project }: { project: Project }) { return; } - // 드래그가 끝났을 때 노드 이동 처리 moveNode(dragItem, hoverItem); }, }); @@ -258,7 +257,7 @@ export default function ProjectStructure({ project }: { project: Project }) { )} {node.name} - {node.imageData &&
{renderStatusIcon(node.imageData.status)}
} + {node.imageData &&
{renderStatusIcon(node.imageData.status)}
} ); };