From d64d7968158fa6bbc9e432f544c8a97039c0d2a3 Mon Sep 17 00:00:00 2001 From: hjlarry Date: Wed, 11 Feb 2026 10:54:07 +0800 Subject: [PATCH] chore: improve download graph log --- web/app/components/header/index.tsx | 15 ++++++++++++ .../core/collaboration-manager.ts | 23 ++++++++++++++++--- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/web/app/components/header/index.tsx b/web/app/components/header/index.tsx index 65f770c33e..928ee15242 100644 --- a/web/app/components/header/index.tsx +++ b/web/app/components/header/index.tsx @@ -42,6 +42,13 @@ const Header = () => { else setShowAccountSettingModal({ payload: ACCOUNT_SETTING_TAB.BILLING }) }, [isFreePlan, setShowAccountSettingModal, setShowPricingModal]) + const handleDownloadGraphImportLog = useCallback(() => { + void import('@/app/components/workflow/collaboration/core/collaboration-manager') + .then(({ collaborationManager }) => { + collaborationManager.downloadGraphImportLog() + }) + .catch(() => {}) + }, []) const renderLogo = () => (

@@ -106,6 +113,14 @@ const Header = () => { {!isCurrentWorkspaceDatasetOperator && }
+