[Cleanup] Remove ComfyApp.serializeGraph (#3383)

This commit is contained in:
Chenlei Hu
2025-04-10 11:50:27 -04:00
committed by GitHub
parent 261f671ef0
commit 27c8389b9f
3 changed files with 11 additions and 19 deletions

View File

@@ -18,7 +18,7 @@ export function useWorkflowPersistence() {
const persistCurrentWorkflow = () => {
if (!workflowPersistenceEnabled.value) return
const workflow = JSON.stringify(comfyApp.serializeGraph())
const workflow = JSON.stringify(comfyApp.graph.serialize())
localStorage.setItem('workflow', workflow)
if (api.clientId) {
sessionStorage.setItem(`workflow:${api.clientId}`, workflow)