From f1d91c52884d0dd7327215756b1b710dc4c7577f Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Fri, 15 May 2026 14:30:45 -0400 Subject: [PATCH] fix: reload page after bulk chatflow update and show in-progress state --- .../ui/src/Admin/Chatflows/index.tsx | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/packages-answers/ui/src/Admin/Chatflows/index.tsx b/packages-answers/ui/src/Admin/Chatflows/index.tsx index 2a2ec4bb80c..b30cea48632 100644 --- a/packages-answers/ui/src/Admin/Chatflows/index.tsx +++ b/packages-answers/ui/src/Admin/Chatflows/index.tsx @@ -91,6 +91,7 @@ const AdminChatflows = () => { // Bulk update confirmation dialog state const [bulkUpdateDialogOpen, setBulkUpdateDialogOpen] = useState(false) const [bulkUpdateIncludeName, setBulkUpdateIncludeName] = useState(false) + const [bulkUpdateInProgress, setBulkUpdateInProgress] = useState(false) // Versioning state const [versionModalOpen, setVersionModalOpen] = useState(false) @@ -1030,7 +1031,7 @@ const AdminChatflows = () => { @@ -1087,18 +1090,18 @@ const AdminChatflows = () => {