From 78673f2cea298c5711e0a5b3752f32b6f3c30dd2 Mon Sep 17 00:00:00 2001 From: saithsab877 Date: Thu, 19 Dec 2024 03:45:45 +0500 Subject: [PATCH] fix(blue-graph): enable 'Confirm' button on attribute deletion --- .../ModalsContainer/BlueprintModal/Body/Editor/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx b/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx index ffbfaea43..44d24a511 100644 --- a/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx +++ b/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx @@ -303,6 +303,7 @@ export const Editor = ({ const handleDeleteAttribute = (attributeKey: string) => { setDeletedAttributes((prev) => [...prev, attributeKey]) + setSubmitDisabled(false) } const handleDelete = async () => {