From 89144b61c8f382ef38d98e605ea685af440c569c Mon Sep 17 00:00:00 2001 From: hjlarry Date: Fri, 10 Apr 2026 16:05:05 +0800 Subject: [PATCH] chore: rm graphViewActive --- .../collaboration/core/collaboration-manager.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/web/app/components/workflow/collaboration/core/collaboration-manager.ts b/web/app/components/workflow/collaboration/core/collaboration-manager.ts index 5fa1545328a..e7054d08c9d 100644 --- a/web/app/components/workflow/collaboration/core/collaboration-manager.ts +++ b/web/app/components/workflow/collaboration/core/collaboration-manager.ts @@ -722,18 +722,6 @@ export class CollaborationManager { }) } - emitGraphViewActive(isActive: boolean): void { - this.graphViewActive = isActive - if (!this.currentAppId || !webSocketClient.isConnected(this.currentAppId)) - return - - this.sendCollaborationEvent({ - type: 'graph_view_active', - data: { active: isActive }, - timestamp: Date.now(), - }) - } - emitHistoryAction(action: 'undo' | 'redo' | 'jump'): void { if (!this.currentAppId || !webSocketClient.isConnected(this.currentAppId)) return