Skip to content

fix: prevent re-opening same workflow from silently discarding unsaved edits#10834

Open
dante01yoon wants to merge 4 commits intomainfrom
fix/workflow-reopen-overwrites-changes
Open

fix: prevent re-opening same workflow from silently discarding unsaved edits#10834
dante01yoon wants to merge 4 commits intomainfrom
fix/workflow-reopen-overwrites-changes

Conversation

@dante01yoon
Copy link
Copy Markdown
Collaborator

@dante01yoon dante01yoon commented Apr 3, 2026

Summary

When a user loads a workflow file that is already open in a tab and has unsaved modifications, the second load silently overwrites all changes via changeTracker.reset() without any save/discard prompt or new tab creation.

Root cause: isSameActiveWorkflowLoad in workflowService.ts matched the active workflow by path/id but did not check isModified, so modified workflows were treated identically to unmodified ones.

Fix: Add !existingWorkflow.isModified guard to isSameActiveWorkflowLoad. When the active workflow has unsaved edits, the condition falls through to createNewTemporary(), opening a new tab instead of overwriting.

Reproduction Steps

  1. Load a workflow from a file (drag-and-drop or file input) — e.g. test_workflow.json
  2. Modify widget values (e.g. change KSampler seed from 0 to 99999)
  3. Load the same file again (drag the same file onto the canvas)
  4. AS IS: Changes are silently discarded — seed reverts to 0, no save prompt shown
  5. TO BE: A new tab opens with the file's original content; the modified tab is preserved

AS IS (Before Fix)

Re-loading test_workflow.json after editing seed to 99999:

  • Same tab is reused, changeTracker.reset() overwrites seed back to 0
  • No save/discard dialog appears
  • User's unsaved work is permanently lost

TO BE (After Fix)

Re-loading test_workflow.json after editing seed to 99999:

  • A new tab opens with the file's original content (seed = 0)
  • The existing modified tab is preserved with seed = 99999
  • User can compare both versions or continue editing

Red-Green Verification

Commit CI Status Purpose
test: add failing test for workflow reopen overwriting unsaved changes 🔴 Red Proves the test catches the bug
fix: prevent re-opening same workflow from silently discarding unsaved edits 🟢 Green Proves the fix resolves the bug

Test Plan

  • CI red on test-only commit
  • CI green on fix commit
  • E2E regression test added under browser_tests/tests/workflowReopenOverwrite.spec.ts
  • Manual verification: load file → edit → re-load same file → edits preserved in original tab

┆Issue is synchronized with this Notion page by Unito

Reproduces #10766 — when the same workflow file is loaded twice,
the second load silently overwrites unsaved edits without any
save/discard prompt or new tab creation.
…d edits

When the user loads a workflow file that matches an already-open tab,
afterLoadNewGraph reused the existing tab and called changeTracker.reset(),
silently overwriting any unsaved modifications.

Add an isModified guard to isSameActiveWorkflowLoad so that modified
workflows are not silently overwritten — a new tab is opened instead.

- Fixes #10766
@dante01yoon dante01yoon requested a review from a team April 3, 2026 01:20
@dosubot dosubot bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Apr 3, 2026
@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 3, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 04/03/2026, 06:00:50 AM UTC

Links

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Apr 3, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 6bd4327e-55c8-48e3-9c52-0eb4cc2e6150

📥 Commits

Reviewing files that changed from the base of the PR and between b457a27 and 863c208.

📒 Files selected for processing (1)
  • browser_tests/tests/workflowReopenOverwrite.spec.ts

📝 Walkthrough

Walkthrough

Prevents unsaved workflow changes from being silently overwritten when reloading the same workflow source by refusing to reuse an active, modified workflow; instead the reload opens a new workflow/tab. Adds a Playwright regression test that verifies either preservation of edits or creation of a new tab when reloading the same workflow.

Changes

Cohort / File(s) Summary
Browser Test
browser_tests/tests/workflowReopenOverwrite.spec.ts
Adds a Playwright spec that modifies a node widget, marks the canvas dirty, invokes the workflow change tracker, reloads the same serialized workflow, and asserts that either the modification persists or a new workflow tab is opened.
Workflow Service
src/platform/workflow/core/services/workflowService.ts
In afterLoadNewGraph, added a check to avoid reusing the active workflow when existingWorkflow.isModified is true, causing repeated/idempotent loads of the same path to open a new workflow/tab instead of overwriting unsaved changes.

Sequence Diagram(s)

(omitted — changes do not introduce a new multi-component sequential flow requiring visualization)

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Poem

🐰 I nudged a seed beneath my paw,
The loader hopped back—what a flaw!
Now if the same file bounces near,
Your edits stay safe, or a new tab appears. 🥕

🚥 Pre-merge checks | ✅ 7
✅ Passed checks (7 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main fix: preventing silent discarding of unsaved edits when reopening a workflow.
Description check ✅ Passed The description follows the template with Summary, Changes, Review Focus, and Fixes sections. It includes root cause analysis, fix explanation, reproduction steps, before/after behavior, red-green verification, and test plan.
Linked Issues check ✅ Passed The code changes directly address issue #10766 by adding the !existingWorkflow.isModified guard to prevent silent overwriting, opening new tabs instead, and including regression tests.
Out of Scope Changes check ✅ Passed All changes are within scope: one targeted guard condition in workflowService.ts and one regression test file. No extraneous modifications are present.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
End-To-End Regression Coverage For Fixes ✅ Passed PR includes end-to-end regression coverage for the bug fix with new test file in browser_tests/ directory.
Adr Compliance For Entity/Litegraph Changes ✅ Passed PR modifies workflow service and test files, neither under src/lib/litegraph/, src/ecs/, or graph entity paths. ADR compliance check not applicable.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/workflow-reopen-overwrites-changes

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 3, 2026

🎭 Playwright: ✅ 938 passed, 0 failed · 4 flaky

📊 Browser Reports
  • chromium: View Report (✅ 924 / ❌ 0 / ⚠️ 4 / ⏭️ 1)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 11 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 3, 2026

📦 Bundle: 5.11 MB gzip 🔴 +106 B

Details

Summary

  • Raw size: 23.5 MB baseline 23.5 MB — 🔴 +32 B
  • Gzip: 5.11 MB baseline 5.11 MB — 🔴 +106 B
  • Brotli: 3.95 MB baseline 3.95 MB — 🔴 +155 B
  • Bundles: 250 current • 250 baseline • 114 added / 114 removed

Category Glance
Data & Services 🔴 +32 B (2.97 MB) · Vendor & Third-Party ⚪ 0 B (9.8 MB) · Other ⚪ 0 B (8.44 MB) · Graph Workspace ⚪ 0 B (1.2 MB) · Panels & Settings ⚪ 0 B (484 kB) · Utilities & Hooks ⚪ 0 B (338 kB) · + 5 more

App Entry Points — 22.3 kB (baseline 22.3 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BQFKGOSV.js (removed) 22.3 kB 🟢 -22.3 kB 🟢 -7.95 kB 🟢 -6.79 kB
assets/index-vC11Vw87.js (new) 22.3 kB 🔴 +22.3 kB 🔴 +7.95 kB 🔴 +6.83 kB

Status: 1 added / 1 removed

Graph Workspace — 1.2 MB (baseline 1.2 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-IMnNKjtd.js (new) 1.2 MB 🔴 +1.2 MB 🔴 +256 kB 🔴 +193 kB
assets/GraphView-uvJNeKIB.js (removed) 1.2 MB 🟢 -1.2 MB 🟢 -256 kB 🟢 -193 kB

Status: 1 added / 1 removed

Views & Navigation — 76.6 kB (baseline 76.6 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-jSb7Fymg.js (new) 15.7 kB 🔴 +15.7 kB 🔴 +3.4 kB 🔴 +2.9 kB
assets/CloudSurveyView-YXF21fMV.js (removed) 15.7 kB 🟢 -15.7 kB 🟢 -3.4 kB 🟢 -2.89 kB
assets/CloudLoginView-BSqxixbS.js (new) 12 kB 🔴 +12 kB 🔴 +3.36 kB 🔴 +2.97 kB
assets/CloudLoginView-DeVpiw6j.js (removed) 12 kB 🟢 -12 kB 🟢 -3.36 kB 🟢 -2.96 kB
assets/CloudSignupView-Bz1j6Z3Y.js (new) 9.78 kB 🔴 +9.78 kB 🔴 +2.85 kB 🔴 +2.5 kB
assets/CloudSignupView-CF2j63R0.js (removed) 9.78 kB 🟢 -9.78 kB 🟢 -2.86 kB 🟢 -2.5 kB
assets/UserCheckView-C42KLgWV.js (removed) 9.04 kB 🟢 -9.04 kB 🟢 -2.33 kB 🟢 -2.03 kB
assets/UserCheckView-DAq6NOEw.js (new) 9.04 kB 🔴 +9.04 kB 🔴 +2.33 kB 🔴 +2.04 kB
assets/CloudLayoutView-Df4Vu4S6.js (new) 7.54 kB 🔴 +7.54 kB 🔴 +2.36 kB 🔴 +2.05 kB
assets/CloudLayoutView-DgNsFpvL.js (removed) 7.54 kB 🟢 -7.54 kB 🟢 -2.36 kB 🟢 -2.06 kB
assets/CloudForgotPasswordView-BeXH2qEW.js (new) 5.94 kB 🔴 +5.94 kB 🔴 +2.09 kB 🔴 +1.84 kB
assets/CloudForgotPasswordView-D8x84dfQ.js (removed) 5.94 kB 🟢 -5.94 kB 🟢 -2.09 kB 🟢 -1.83 kB
assets/CloudAuthTimeoutView-CN8aVMPK.js (new) 5.31 kB 🔴 +5.31 kB 🔴 +1.93 kB 🔴 +1.7 kB
assets/CloudAuthTimeoutView-DFnwyJDv.js (removed) 5.31 kB 🟢 -5.31 kB 🟢 -1.93 kB 🟢 -1.68 kB
assets/CloudSubscriptionRedirectView-DTdLEAPn.js (removed) 5.08 kB 🟢 -5.08 kB 🟢 -1.91 kB 🟢 -1.69 kB
assets/CloudSubscriptionRedirectView-rmgmXTpY.js (new) 5.08 kB 🔴 +5.08 kB 🔴 +1.91 kB 🔴 +1.69 kB
assets/UserSelectView-BDBdkhno.js (removed) 4.71 kB 🟢 -4.71 kB 🟢 -1.74 kB 🟢 -1.54 kB
assets/UserSelectView-BQ1eViO2.js (new) 4.71 kB 🔴 +4.71 kB 🔴 +1.74 kB 🔴 +1.54 kB

Status: 9 added / 9 removed / 2 unchanged

Panels & Settings — 484 kB (baseline 484 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-BVacW0q1.js (new) 46.6 kB 🔴 +46.6 kB 🔴 +9.52 kB 🔴 +8.46 kB
assets/KeybindingPanel-OOJsiP2n.js (removed) 46.6 kB 🟢 -46.6 kB 🟢 -9.52 kB 🟢 -8.47 kB
assets/SecretsPanel-DsFrzhEL.js (removed) 22.4 kB 🟢 -22.4 kB 🟢 -5.42 kB 🟢 -4.78 kB
assets/SecretsPanel-Q8MogrxZ.js (new) 22.4 kB 🔴 +22.4 kB 🔴 +5.42 kB 🔴 +4.77 kB
assets/LegacyCreditsPanel-DRj9XCYB.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +5.82 kB 🔴 +5.13 kB
assets/LegacyCreditsPanel-RU7odCVb.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -5.81 kB 🟢 -5.13 kB
assets/SubscriptionPanel-Bd3-KR2E.js (removed) 19.7 kB 🟢 -19.7 kB 🟢 -5.01 kB 🟢 -4.4 kB
assets/SubscriptionPanel-D8aoof4O.js (new) 19.7 kB 🔴 +19.7 kB 🔴 +5.01 kB 🔴 +4.4 kB
assets/AboutPanel-CGui_hJV.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.98 kB
assets/AboutPanel-CpYG-j2E.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +2.98 kB
assets/ExtensionPanel-g6TGAGkG.js (removed) 9.78 kB 🟢 -9.78 kB 🟢 -2.82 kB 🟢 -2.51 kB
assets/ExtensionPanel-IdoQV2WR.js (new) 9.78 kB 🔴 +9.78 kB 🔴 +2.82 kB 🔴 +2.5 kB
assets/ServerConfigPanel-CBtG76p5.js (new) 6.85 kB 🔴 +6.85 kB 🔴 +2.27 kB 🔴 +2.04 kB
assets/ServerConfigPanel-DY8jgiOW.js (removed) 6.85 kB 🟢 -6.85 kB 🟢 -2.27 kB 🟢 -2.03 kB
assets/UserPanel-DZibh75B.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +2.15 kB 🔴 +1.89 kB
assets/UserPanel-ePxJEGZf.js (removed) 6.56 kB 🟢 -6.56 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/cloudRemoteConfig-BK93MxtA.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -903 B 🟢 -791 B
assets/cloudRemoteConfig-C1yUFMNQ.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +904 B 🔴 +801 B
assets/refreshRemoteConfig-3sXzzq4J.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -649 B 🟢 -548 B
assets/refreshRemoteConfig-DiDbTl85.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +649 B 🔴 +557 B

Status: 10 added / 10 removed / 12 unchanged

User & Accounts — 17.1 kB (baseline 17.1 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-CXxlv5u9.js (new) 3.57 kB 🔴 +3.57 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/auth-Dhg1UQRU.js (removed) 3.57 kB 🟢 -3.57 kB 🟢 -1.26 kB 🟢 -1.07 kB
assets/SignUpForm-Cj2NDE6B.js (removed) 3.16 kB 🟢 -3.16 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-CUt7q2IG.js (new) 3.16 kB 🔴 +3.16 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-B5x7B0mt.js (removed) 2.66 kB 🟢 -2.66 kB 🟢 -1.19 kB 🟢 -1.07 kB
assets/UpdatePasswordContent-IAWMRMRm.js (new) 2.66 kB 🔴 +2.66 kB 🔴 +1.19 kB 🔴 +1.05 kB
assets/authStore-B_NMw0CZ.js (removed) 989 B 🟢 -989 B 🟢 -484 B 🟢 -436 B
assets/authStore-LLiBLaKq.js (new) 989 B 🔴 +989 B 🔴 +485 B 🔴 +434 B
assets/auth-Cfi3a8aM.js (new) 348 B 🔴 +348 B 🔴 +219 B 🔴 +192 B
assets/auth-oyMq3yqm.js (removed) 348 B 🟢 -348 B 🟢 -218 B 🟢 -190 B

Status: 5 added / 5 removed / 2 unchanged

Editors & Dialogs — 109 kB (baseline 109 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useShareDialog-BA_RlAHw.js (removed) 108 kB 🟢 -108 kB 🟢 -22.4 kB 🟢 -18.9 kB
assets/useShareDialog-DUR1Oq4X.js (new) 108 kB 🔴 +108 kB 🔴 +22.4 kB 🔴 +18.9 kB
assets/useSubscriptionDialog-CMTg1gWK.js (removed) 969 B 🟢 -969 B 🟢 -475 B 🟢 -420 B
assets/useSubscriptionDialog-fWjcGXRK.js (new) 969 B 🔴 +969 B 🔴 +477 B 🔴 +420 B

Status: 2 added / 2 removed

UI Components — 60.3 kB (baseline 60.3 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-BTihP-w5.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.37 kB
assets/ComfyQueueButton-RB_aFpSE.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.37 kB
assets/useTerminalTabs-BLc0VcHl.js (new) 10.7 kB 🔴 +10.7 kB 🔴 +3.61 kB 🔴 +3.17 kB
assets/useTerminalTabs-CKn8frPW.js (removed) 10.7 kB 🟢 -10.7 kB 🟢 -3.6 kB 🟢 -3.16 kB
assets/SubscribeButton-DCpxVmpO.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.04 kB 🔴 +914 B
assets/SubscribeButton-jWD2eDHw.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -914 B
assets/cloudFeedbackTopbarButton-D247WnGJ.js (removed) 1.66 kB 🟢 -1.66 kB 🟢 -844 B 🟢 -750 B
assets/cloudFeedbackTopbarButton-DEBMmd6g.js (new) 1.66 kB 🔴 +1.66 kB 🔴 +845 B 🔴 +750 B
assets/ComfyQueueButton-CG4AMD2y.js (removed) 1.03 kB 🟢 -1.03 kB 🟢 -489 B 🟢 -442 B
assets/ComfyQueueButton-CmOTNAi2.js (new) 1.03 kB 🔴 +1.03 kB 🔴 +492 B 🔴 +441 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 2.97 MB (baseline 2.97 MB) • 🔴 +32 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-VaPt_Ozv.js (new) 1.94 MB 🔴 +1.94 MB 🔴 +445 kB 🔴 +338 kB
assets/dialogService-CaW4TQiA.js (removed) 1.94 MB 🟢 -1.94 MB 🟢 -445 kB 🟢 -338 kB
assets/api-BPxyqTOZ.js (new) 885 kB 🔴 +885 kB 🔴 +211 kB 🔴 +167 kB
assets/api-BzQeKjsg.js (removed) 885 kB 🟢 -885 kB 🟢 -211 kB 🟢 -167 kB
assets/load3dService-BILjOTNQ.js (new) 92.5 kB 🔴 +92.5 kB 🔴 +19.7 kB 🔴 +17 kB
assets/load3dService-C9ZR-ISJ.js (removed) 92.5 kB 🟢 -92.5 kB 🟢 -19.7 kB 🟢 -16.9 kB
assets/workflowShareService-1gpbLpGR.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.88 kB 🔴 +4.32 kB
assets/workflowShareService-CKcycI85.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.88 kB 🟢 -4.32 kB
assets/keybindingService-C__Yt75C.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.21 kB
assets/keybindingService-D70DRZfa.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.21 kB
assets/releaseStore-B_8YuLcD.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/releaseStore-PeeBSdOo.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/userStore-BrNhxOWq.js (removed) 2.24 kB 🟢 -2.24 kB 🟢 -869 B 🟢 -766 B
assets/userStore-qLYhWtKV.js (new) 2.24 kB 🔴 +2.24 kB 🔴 +870 B 🔴 +769 B
assets/audioService-CM5KuzAn.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -877 B 🟢 -758 B
assets/audioService-DxBYc7Xs.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +877 B 🔴 +762 B
assets/releaseStore-BLZ8d_Un.js (removed) 993 B 🟢 -993 B 🟢 -482 B 🟢 -430 B
assets/releaseStore-FRFhEI0e.js (new) 993 B 🔴 +993 B 🔴 +483 B 🔴 +426 B
assets/workflowDraftStore-BO40oXEh.js (removed) 969 B 🟢 -969 B 🟢 -473 B 🟢 -426 B
assets/workflowDraftStore-D9E4nOSB.js (new) 969 B 🔴 +969 B 🔴 +475 B 🔴 +427 B
assets/dialogService-DJP1236f.js (new) 958 B 🔴 +958 B 🔴 +470 B 🔴 +418 B
assets/dialogService-DvQDJTAr.js (removed) 958 B 🟢 -958 B 🟢 -467 B 🟢 -417 B
assets/settingStore-C4V304Kc.js (new) 956 B 🔴 +956 B 🔴 +472 B 🔴 +419 B
assets/settingStore-CHAty-Ih.js (removed) 956 B 🟢 -956 B 🟢 -470 B 🟢 -419 B
assets/assetsStore-CHhvWQ0E.js (new) 955 B 🔴 +955 B 🔴 +471 B 🔴 +421 B
assets/assetsStore-DOBjeWas.js (removed) 955 B 🟢 -955 B 🟢 -469 B 🟢 -421 B

Status: 13 added / 13 removed / 4 unchanged

Utilities & Hooks — 338 kB (baseline 338 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-CVtIDolT.js (removed) 232 kB 🟢 -232 kB 🟢 -51.3 kB 🟢 -41.7 kB
assets/useConflictDetection-D1eSOxkk.js (new) 232 kB 🔴 +232 kB 🔴 +51.3 kB 🔴 +41.8 kB
assets/useLoad3dViewer-CC1LaBue.js (removed) 18.7 kB 🟢 -18.7 kB 🟢 -4.44 kB 🟢 -3.88 kB
assets/useLoad3dViewer-DAnBpE8R.js (new) 18.7 kB 🔴 +18.7 kB 🔴 +4.44 kB 🔴 +3.88 kB
assets/useLoad3d-BhQRb5xb.js (new) 15 kB 🔴 +15 kB 🔴 +3.79 kB 🔴 +3.35 kB
assets/useLoad3d-K5cZszIo.js (removed) 15 kB 🟢 -15 kB 🟢 -3.79 kB 🟢 -3.35 kB
assets/useFeatureFlags-BDVlVPs6.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.75 kB 🔴 +1.49 kB
assets/useFeatureFlags-DjYwCzEG.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.75 kB 🟢 -1.48 kB
assets/useCopyToClipboard-BCV16r_w.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/useCopyToClipboard-BdFO5ast.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/useWorkspaceUI-Bgl5NYuC.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -979 B 🟢 -813 B
assets/useWorkspaceUI-vpE-oPsL.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +978 B 🔴 +810 B
assets/subscriptionCheckoutUtil-1BCtyJfV.js (removed) 2.97 kB 🟢 -2.97 kB 🟢 -1.31 kB 🟢 -1.14 kB
assets/subscriptionCheckoutUtil-X0_uDxCS.js (new) 2.97 kB 🔴 +2.97 kB 🔴 +1.31 kB 🔴 +1.14 kB
assets/assetPreviewUtil-BYezQye9.js (new) 2.27 kB 🔴 +2.27 kB 🔴 +957 B 🔴 +837 B
assets/assetPreviewUtil-EaQ588si.js (removed) 2.27 kB 🟢 -2.27 kB 🟢 -958 B 🟢 -832 B
assets/useUpstreamValue-CH98pguo.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -805 B 🟢 -713 B
assets/useUpstreamValue-Dj6rG0iD.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +805 B 🔴 +722 B
assets/useLoad3d-B7q1omQe.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -540 B 🟢 -484 B
assets/useLoad3d-Bry9XK46.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +543 B 🔴 +481 B
assets/useLoad3dViewer-DfPNgPIM.js (new) 1.07 kB 🔴 +1.07 kB 🔴 +507 B 🔴 +456 B
assets/useLoad3dViewer-DT9BBmYK.js (removed) 1.07 kB 🟢 -1.07 kB 🟢 -505 B 🟢 -455 B
assets/useCurrentUser-BxLc3eWU.js (new) 955 B 🔴 +955 B 🔴 +472 B 🔴 +419 B
assets/useCurrentUser-BZmQjFiX.js (removed) 955 B 🟢 -955 B 🟢 -470 B 🟢 -421 B
assets/useWorkspaceSwitch-CrmBR2te.js (removed) 747 B 🟢 -747 B 🟢 -384 B 🟢 -330 B
assets/useWorkspaceSwitch-DgWVbaO4.js (new) 747 B 🔴 +747 B 🔴 +385 B 🔴 +331 B

Status: 13 added / 13 removed / 13 unchanged

Vendor & Third-Party — 9.8 MB (baseline 9.8 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 8.44 MB (baseline 8.44 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-CmhufUOl.js (removed) 76.8 kB 🟢 -76.8 kB 🟢 -19.9 kB 🟢 -16.9 kB
assets/core-Dm3ANEA8.js (new) 76.8 kB 🔴 +76.8 kB 🔴 +19.9 kB 🔴 +16.9 kB
assets/groupNode-CJUzZrFX.js (removed) 74 kB 🟢 -74 kB 🟢 -18.5 kB 🟢 -16.3 kB
assets/groupNode-CYIlimRU.js (new) 74 kB 🔴 +74 kB 🔴 +18.5 kB 🔴 +16.3 kB
assets/WidgetSelect-BmX1IdnY.js (removed) 64.6 kB 🟢 -64.6 kB 🟢 -14.1 kB 🟢 -12.2 kB
assets/WidgetSelect-CoJpmp8M.js (new) 64.6 kB 🔴 +64.6 kB 🔴 +14.1 kB 🔴 +12.2 kB
assets/SubscriptionRequiredDialogContentWorkspace-BcsrrRwS.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.29 kB 🔴 +7.96 kB
assets/SubscriptionRequiredDialogContentWorkspace-BI1sMvEI.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.29 kB 🟢 -7.95 kB
assets/WidgetPainter-DpbzYR6N.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -8.12 kB 🟢 -7.19 kB
assets/WidgetPainter-Dzd76_OY.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +8.12 kB 🔴 +7.18 kB
assets/Load3DControls-B4jMJCOO.js (new) 32.1 kB 🔴 +32.1 kB 🔴 +5.47 kB 🔴 +4.75 kB
assets/Load3DControls-BJ4G1OlM.js (removed) 32.1 kB 🟢 -32.1 kB 🟢 -5.47 kB 🟢 -4.76 kB
assets/WorkspacePanelContent-D0YMwlBI.js (new) 29.9 kB 🔴 +29.9 kB 🔴 +6.33 kB 🔴 +5.57 kB
assets/WorkspacePanelContent-jc_Je5qX.js (removed) 29.9 kB 🟢 -29.9 kB 🟢 -6.33 kB 🟢 -5.55 kB
assets/SubscriptionRequiredDialogContent-CfZ5GhKE.js (new) 28.2 kB 🔴 +28.2 kB 🔴 +7.17 kB 🔴 +6.31 kB
assets/SubscriptionRequiredDialogContent-DLaMFntU.js (removed) 28.2 kB 🟢 -28.2 kB 🟢 -7.17 kB 🟢 -6.3 kB
assets/Load3dViewerContent-C9KnexND.js (new) 24.5 kB 🔴 +24.5 kB 🔴 +5.33 kB 🔴 +4.64 kB
assets/Load3dViewerContent-DlcxV4NQ.js (removed) 24.5 kB 🟢 -24.5 kB 🟢 -5.33 kB 🟢 -4.64 kB
assets/WidgetImageCrop-BRdZtJen.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.83 kB 🔴 +5.13 kB
assets/WidgetImageCrop-CyeWwhwR.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.83 kB 🟢 -5.13 kB
assets/SubscriptionPanelContentWorkspace-BO-QsEEl.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.18 kB 🟢 -4.55 kB
assets/SubscriptionPanelContentWorkspace-rBv3wLv5.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.18 kB 🔴 +4.55 kB
assets/SignInContent-2crlqyio.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -5.29 kB 🟢 -4.64 kB
assets/SignInContent-C7GEbg4E.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +5.3 kB 🔴 +4.62 kB
assets/CurrentUserPopoverWorkspace-a1f8xD6t.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +4.83 kB 🔴 +4.33 kB
assets/CurrentUserPopoverWorkspace-CUrxlqTi.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -4.83 kB 🟢 -4.33 kB
assets/WidgetInputNumber-CHDaBsKS.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.3 kB
assets/WidgetInputNumber-CThSBFOy.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.3 kB
assets/WidgetRecordAudio-BGPYrBMB.js (new) 18.1 kB 🔴 +18.1 kB 🔴 +5.18 kB 🔴 +4.64 kB
assets/WidgetRecordAudio-DbiOw4aS.js (removed) 18.1 kB 🟢 -18.1 kB 🟢 -5.18 kB 🟢 -4.64 kB
assets/Load3D-BbMZ8sA6.js (new) 16.9 kB 🔴 +16.9 kB 🔴 +4.12 kB 🔴 +3.59 kB
assets/Load3D-DaoaT4Qg.js (removed) 16.9 kB 🟢 -16.9 kB 🟢 -4.12 kB 🟢 -3.59 kB
assets/load3d-DeshZOBC.js (new) 15 kB 🔴 +15 kB 🔴 +4.32 kB 🔴 +3.73 kB
assets/load3d-DG7xgSgw.js (removed) 15 kB 🟢 -15 kB 🟢 -4.32 kB 🟢 -3.73 kB
assets/WaveAudioPlayer-CCKMo0Hj.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.69 kB 🟢 -3.22 kB
assets/WaveAudioPlayer-DeAGKAkq.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.69 kB 🔴 +3.22 kB
assets/WidgetCurve-CJKyPzZZ.js (removed) 12 kB 🟢 -12 kB 🟢 -3.85 kB 🟢 -3.48 kB
assets/WidgetCurve-ZkXBEhA5.js (new) 12 kB 🔴 +12 kB 🔴 +3.85 kB 🔴 +3.49 kB
assets/TeamWorkspacesDialogContent-BOG0lvyj.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.34 kB 🔴 +2.96 kB
assets/TeamWorkspacesDialogContent-DvhvDNTi.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.33 kB 🟢 -2.98 kB
assets/nodeTemplates-BssJNl2r.js (new) 9.58 kB 🔴 +9.58 kB 🔴 +3.37 kB 🔴 +2.97 kB
assets/nodeTemplates-DyFUneAJ.js (removed) 9.58 kB 🟢 -9.58 kB 🟢 -3.37 kB 🟢 -2.97 kB
assets/InviteMemberDialogContent-CfZJqkNW.js (removed) 7.77 kB 🟢 -7.77 kB 🟢 -2.45 kB 🟢 -2.15 kB
assets/InviteMemberDialogContent-COyElyoR.js (new) 7.77 kB 🔴 +7.77 kB 🔴 +2.45 kB 🔴 +2.15 kB
assets/Load3DConfiguration-5c7ohgrX.js (new) 6.6 kB 🔴 +6.6 kB 🔴 +2.04 kB 🔴 +1.78 kB
assets/Load3DConfiguration-Caj3ePe_.js (removed) 6.6 kB 🟢 -6.6 kB 🟢 -2.04 kB 🟢 -1.78 kB
assets/onboardingCloudRoutes-C0BKfjJg.js (removed) 6.53 kB 🟢 -6.53 kB 🟢 -2.04 kB 🟢 -1.74 kB
assets/onboardingCloudRoutes-CJbC1VTX.js (new) 6.53 kB 🔴 +6.53 kB 🔴 +2.04 kB 🔴 +1.76 kB
assets/WidgetWithControl-BCJm_e1A.js (new) 5.99 kB 🔴 +5.99 kB 🔴 +2.38 kB 🔴 +2.12 kB
assets/WidgetWithControl-zQzZrRGA.js (removed) 5.99 kB 🟢 -5.99 kB 🟢 -2.38 kB 🟢 -2.11 kB
assets/CreateWorkspaceDialogContent-DezJBIZ_.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +2.15 kB 🔴 +1.87 kB
assets/CreateWorkspaceDialogContent-OncOa_4A.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/FreeTierDialogContent-CYOYfCfP.js (new) 5.82 kB 🔴 +5.82 kB 🔴 +2.05 kB 🔴 +1.81 kB
assets/FreeTierDialogContent-DxCZpQ0d.js (removed) 5.82 kB 🟢 -5.82 kB 🟢 -2.05 kB 🟢 -1.81 kB
assets/EditWorkspaceDialogContent-DbBTAvsZ.js (new) 5.75 kB 🔴 +5.75 kB 🔴 +2.11 kB 🔴 +1.84 kB
assets/EditWorkspaceDialogContent-DBO9zu4Z.js (removed) 5.75 kB 🟢 -5.75 kB 🟢 -2.11 kB 🟢 -1.84 kB
assets/WidgetTextarea-JB6X3upq.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.17 kB 🔴 +1.92 kB
assets/WidgetTextarea-wSbzdwB0.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.17 kB 🟢 -1.92 kB
assets/Preview3d-BIfSHAqe.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/Preview3d-DTw058QB.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -1.79 kB 🟢 -1.56 kB
assets/ValueControlPopover-BXBPP3gP.js (new) 5.33 kB 🔴 +5.33 kB 🔴 +1.93 kB 🔴 +1.73 kB
assets/ValueControlPopover-C-L2RzXq.js (removed) 5.33 kB 🟢 -5.33 kB 🟢 -1.93 kB 🟢 -1.73 kB
assets/CancelSubscriptionDialogContent-Bp1UNeeG.js (removed) 5.22 kB 🟢 -5.22 kB 🟢 -1.95 kB 🟢 -1.7 kB
assets/CancelSubscriptionDialogContent-CfnHziI-.js (new) 5.22 kB 🔴 +5.22 kB 🔴 +1.95 kB 🔴 +1.7 kB
assets/DeleteWorkspaceDialogContent-bLF8GKN8.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/DeleteWorkspaceDialogContent-DCJ84ssM.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/LeaveWorkspaceDialogContent-BnOJXouK.js (new) 4.48 kB 🔴 +4.48 kB 🔴 +1.74 kB 🔴 +1.51 kB
assets/LeaveWorkspaceDialogContent-CZ8hRGcx.js (removed) 4.48 kB 🟢 -4.48 kB 🟢 -1.74 kB 🟢 -1.51 kB
assets/RemoveMemberDialogContent-07n59xVw.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.69 kB 🔴 +1.47 kB
assets/RemoveMemberDialogContent-BmcwhCXC.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.69 kB 🟢 -1.47 kB
assets/tierBenefits-CYjfq_7r.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/tierBenefits-DQ5IETEX.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/RevokeInviteDialogContent-1VE36NIF.js (removed) 4.37 kB 🟢 -4.37 kB 🟢 -1.7 kB 🟢 -1.48 kB
assets/RevokeInviteDialogContent-CY8v5nyo.js (new) 4.37 kB 🔴 +4.37 kB 🔴 +1.7 kB 🔴 +1.48 kB
assets/InviteMemberUpsellDialogContent-Bn97rBtB.js (removed) 4.27 kB 🟢 -4.27 kB 🟢 -1.56 kB 🟢 -1.37 kB
assets/InviteMemberUpsellDialogContent-DV518QA6.js (new) 4.27 kB 🔴 +4.27 kB 🔴 +1.56 kB 🔴 +1.37 kB
assets/cloudSessionCookie-ApH5znL8.js (new) 4.12 kB 🔴 +4.12 kB 🔴 +1.49 kB 🔴 +1.3 kB
assets/cloudSessionCookie-JUUJgAQZ.js (removed) 4.12 kB 🟢 -4.12 kB 🟢 -1.49 kB 🟢 -1.3 kB
assets/saveMesh-C79ePew1.js (new) 3.92 kB 🔴 +3.92 kB 🔴 +1.68 kB 🔴 +1.48 kB
assets/saveMesh-fK9AkNbt.js (removed) 3.92 kB 🟢 -3.92 kB 🟢 -1.68 kB 🟢 -1.48 kB
assets/Media3DTop-BcPUfJsz.js (removed) 3.85 kB 🟢 -3.85 kB 🟢 -1.62 kB 🟢 -1.43 kB
assets/Media3DTop-DTtlQabC.js (new) 3.85 kB 🔴 +3.85 kB 🔴 +1.62 kB 🔴 +1.44 kB
assets/GlobalToast-B67GkOYz.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/GlobalToast-L0qD3dTO.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/SubscribeToRun-Ct2i9Erv.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +981 B 🔴 +871 B
assets/SubscribeToRun-tWskb2oE.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -983 B 🟢 -880 B
assets/MediaAudioTop-BnAcHA7k.js (new) 2.02 kB 🔴 +2.02 kB 🔴 +984 B 🔴 +833 B
assets/MediaAudioTop-DK0qHiik.js (removed) 2.02 kB 🟢 -2.02 kB 🟢 -983 B 🟢 -829 B
assets/CloudRunButtonWrapper-IznD9ZWv.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +908 B 🔴 +803 B
assets/CloudRunButtonWrapper-wI670lOZ.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -908 B 🟢 -801 B
assets/graphHasMissingNodes-DKs4ao9O.js (new) 1.83 kB 🔴 +1.83 kB 🔴 +862 B 🔴 +755 B
assets/graphHasMissingNodes-Dum-aLUN.js (removed) 1.83 kB 🟢 -1.83 kB 🟢 -861 B 🟢 -750 B
assets/cloudBadges-C1da4dJV.js (new) 1.77 kB 🔴 +1.77 kB 🔴 +890 B 🔴 +770 B
assets/cloudBadges-lz6UBuij.js (removed) 1.77 kB 🟢 -1.77 kB 🟢 -889 B 🟢 -792 B
assets/cloudSubscription-BNfs8Qnm.js (removed) 1.68 kB 🟢 -1.68 kB 🟢 -812 B 🟢 -710 B
assets/cloudSubscription-D9d-KqIi.js (new) 1.68 kB 🔴 +1.68 kB 🔴 +813 B 🔴 +703 B
assets/previousFullPath-BEVIYNi9.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -695 B 🟢 -601 B
assets/previousFullPath-Dzn0QUhE.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +694 B 🔴 +616 B
assets/Load3D-EtnbyXQT.js (removed) 1.34 kB 🟢 -1.34 kB 🟢 -612 B 🟢 -546 B
assets/Load3D-wxJq7vmT.js (new) 1.34 kB 🔴 +1.34 kB 🔴 +616 B 🔴 +542 B
assets/nightlyBadges-BRaiJ3Am.js (removed) 1.29 kB 🟢 -1.29 kB 🟢 -657 B 🟢 -585 B
assets/nightlyBadges-DDQ97uJk.js (new) 1.29 kB 🔴 +1.29 kB 🔴 +660 B 🔴 +580 B
assets/Load3dViewerContent-0m34Mdt1.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +568 B 🔴 +502 B
assets/Load3dViewerContent-C53k28P3.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -564 B 🟢 -496 B
assets/SubscriptionPanelContentWorkspace-DSw2csls.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -535 B 🟢 -467 B
assets/SubscriptionPanelContentWorkspace-DYHgHeA_.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +537 B 🔴 +468 B
assets/WidgetLegacy-BrFtCRoZ.js (new) 978 B 🔴 +978 B 🔴 +483 B 🔴 +427 B
assets/WidgetLegacy-CKHHvyxl.js (removed) 978 B 🟢 -978 B 🟢 -481 B 🟢 -427 B
assets/changeTracker-B3TsF5bD.js (removed) 952 B 🟢 -952 B 🟢 -470 B 🟢 -418 B
assets/changeTracker-Cbp5WzMw.js (new) 952 B 🔴 +952 B 🔴 +471 B 🔴 +420 B

Status: 55 added / 55 removed / 79 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.2 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.1 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 46.7 MB heap
large-graph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.9 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.2 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.1 MB heap
minimap-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.8 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.3 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.2 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.2 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 74.1 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 158.6 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 30.0 P5 FPS ❌ (target: ≥52) · 0ms TBT · 157.8 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 46.6 MB heap

No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms +1%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 9ms -8% z=-2.5
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 11 10 -9% z=-2.1
canvas-idle: task duration 348ms 346ms -0% z=-1.6
canvas-idle: script duration 22ms 21ms -4% z=-1.8
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 61.2 MB 60.2 MB -2%
canvas-idle: DOM nodes 21 20 -5% z=-2.0
canvas-idle: event listeners 6 6 +0% z=-1.2
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 4ms 3ms -11% z=-2.2
canvas-mouse-sweep: style recalc duration 43ms 41ms -5% z=-0.4
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 81 82 +1% z=1.4
canvas-mouse-sweep: task duration 983ms 933ms -5% z=1.2
canvas-mouse-sweep: script duration 137ms 130ms -5% z=-0.9
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 56.3 MB 56.1 MB -0%
canvas-mouse-sweep: DOM nodes 65 67 +3% z=1.8
canvas-mouse-sweep: event listeners 6 6 +0% z=-0.6
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms +5% z=-0.5
canvas-zoom-sweep: style recalc duration 18ms 17ms -1% z=-1.1
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 32 +0% z=1.6
canvas-zoom-sweep: task duration 310ms 290ms -6% z=-1.6
canvas-zoom-sweep: script duration 27ms 25ms -8% z=-0.8
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 64.2 MB 64.1 MB -0%
canvas-zoom-sweep: DOM nodes 80 79 -1% z=-0.3
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 10ms 10ms -1% z=-0.4
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 13 13 +0% z=-0.2
dom-widget-clipping: task duration 354ms 331ms -6% z=-2.0
dom-widget-clipping: script duration 64ms 65ms +2% z=-0.8
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 47.0 MB 46.7 MB -1%
dom-widget-clipping: DOM nodes 22 22 +0% z=-0.1
dom-widget-clipping: event listeners 2 2 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 10ms 10ms -1% z=-2.6
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 11 +10% z=-1.9
large-graph-idle: task duration 545ms 531ms -2% z=-0.2
large-graph-idle: script duration 101ms 94ms -7% z=-0.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 52.8 MB 52.9 MB +0%
large-graph-idle: DOM nodes -255 -255 +0% z=-309.4
large-graph-idle: event listeners -123 -127 +3% z=-25.1
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 16ms 16ms -2% z=-1.7
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-0.9
large-graph-pan: task duration 1073ms 1039ms -3% z=-1.0
large-graph-pan: script duration 400ms 383ms -4% z=-1.3
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 65.1 MB 65.2 MB +0%
large-graph-pan: DOM nodes -261 -260 -0% z=-169.1
large-graph-pan: event listeners -127 -125 -2% z=-156.9
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 7ms -6%
large-graph-zoom: style recalc duration 16ms 16ms +1%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 66 +0%
large-graph-zoom: task duration 1385ms 1270ms -8%
large-graph-zoom: script duration 518ms 474ms -9%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 61.0 MB 59.1 MB -3%
large-graph-zoom: DOM nodes -264 -264 +0%
large-graph-zoom: event listeners -123 -123 +0%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 9ms 9ms -5% z=-1.0
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 9 10 +11% z=0.6
minimap-idle: task duration 536ms 510ms -5% z=-0.4
minimap-idle: script duration 97ms 95ms -2% z=-0.4
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 53.9 MB 53.8 MB -0%
minimap-idle: DOM nodes -261 -258 -1% z=-202.6
minimap-idle: event listeners -127 -125 -2% z=-196.2
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 14ms 11ms -16% z=-1.3
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 49 48 -2% z=0.1
subgraph-dom-widget-clipping: task duration 370ms 341ms -8% z=-2.0
subgraph-dom-widget-clipping: script duration 132ms 121ms -8% z=-1.2
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 47.3 MB 47.3 MB +0%
subgraph-dom-widget-clipping: DOM nodes 23 22 -4% z=-0.2
subgraph-dom-widget-clipping: event listeners 8 8 +0% z=-1.4
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.7
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 10ms 10ms -7% z=-0.8
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 11 11 +0% z=0.2
subgraph-idle: task duration 370ms 333ms -10% z=-1.2
subgraph-idle: script duration 18ms 17ms -5% z=-1.2
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 60.1 MB 60.2 MB +0%
subgraph-idle: DOM nodes 22 22 +0% z=0.1
subgraph-idle: event listeners 6 6 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 5ms 4ms -16% z=-2.1
subgraph-mouse-sweep: style recalc duration 48ms 43ms -12% z=0.0
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 85 84 -1% z=2.0
subgraph-mouse-sweep: task duration 910ms 864ms -5% z=1.4
subgraph-mouse-sweep: script duration 109ms 98ms -10% z=-0.5
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 52.5 MB 52.2 MB -1%
subgraph-mouse-sweep: DOM nodes 73 73 +0% z=2.7
subgraph-mouse-sweep: event listeners 6 6 +0% variance too high
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms +1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 46ms 42ms -7%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 252 251 -0%
viewport-pan-sweep: task duration 3713ms 3545ms -5%
viewport-pan-sweep: script duration 1263ms 1230ms -3%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 73.1 MB 74.1 MB +1%
viewport-pan-sweep: DOM nodes -254 -256 +1%
viewport-pan-sweep: event listeners -111 -111 +0%
vue-large-graph-idle: avg frame time 17ms 17ms +0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 12296ms 11509ms -6%
vue-large-graph-idle: script duration 626ms 557ms -11%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 158.3 MB 158.6 MB +0%
vue-large-graph-idle: DOM nodes -8331 -8331 +0%
vue-large-graph-idle: event listeners -16462 -16464 +0%
vue-large-graph-pan: avg frame time 17ms 18ms +3%
vue-large-graph-pan: p95 frame time 17ms 33ms +99%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 14ms 13ms -11%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 70 64 -9%
vue-large-graph-pan: task duration 14487ms 13910ms -4%
vue-large-graph-pan: script duration 844ms 825ms -2%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 152.4 MB 157.8 MB +4%
vue-large-graph-pan: DOM nodes -8331 -8331 +0%
vue-large-graph-pan: event listeners -16460 -16460 +0%
workflow-execution: avg frame time 17ms 17ms -0% z=-0.4
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 1ms -20% z=-3.1
workflow-execution: style recalc duration 24ms 24ms +3% z=0.0
workflow-execution: layout count 5 4 -20% z=-1.7
workflow-execution: style recalc count 16 19 +19% z=0.6
workflow-execution: task duration 123ms 114ms -8% z=-0.8
workflow-execution: script duration 27ms 24ms -14% z=-1.8
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 47.7 MB 46.6 MB -2%
workflow-execution: DOM nodes 156 159 +2% z=-0.3
workflow-execution: event listeners 71 71 +0% z=4.4
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-04-03T06:11:39.080Z",
  "gitSha": "90c08e37f443b32af0f28ec1af245956ecb5cea3",
  "branch": "fix/workflow-reopen-overwrites-changes",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2055.3940000000352,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.334,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 371.977,
      "heapDeltaBytes": 20289888,
      "heapUsedBytes": 63160424,
      "domNodes": 20,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 21.728,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-idle",
      "durationMs": 2021.9639999999117,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.705,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 346.246,
      "heapDeltaBytes": 20331268,
      "heapUsedBytes": 63202540,
      "domNodes": 20,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 21.199999999999996,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-idle",
      "durationMs": 2023.775999999998,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.593,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 327.701,
      "heapDeltaBytes": 20403188,
      "heapUsedBytes": 63172488,
      "domNodes": 20,
      "jsHeapTotalBytes": 22282240,
      "scriptDurationMs": 20.281,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2017.8300000000036,
      "styleRecalcs": 85,
      "styleRecalcDurationMs": 41.238,
      "layouts": 12,
      "layoutDurationMs": 3.1700000000000004,
      "taskDurationMs": 933.326,
      "heapDeltaBytes": 16071448,
      "heapUsedBytes": 58822980,
      "domNodes": 67,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 129.631,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2035.0979999999481,
      "styleRecalcs": 82,
      "styleRecalcDurationMs": 41.537000000000006,
      "layouts": 12,
      "layoutDurationMs": 3.1820000000000004,
      "taskDurationMs": 937.7919999999999,
      "heapDeltaBytes": 16382728,
      "heapUsedBytes": 58827404,
      "domNodes": 68,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 130.56699999999998,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1801.6379999999117,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 36.856,
      "layouts": 12,
      "layoutDurationMs": 3.224,
      "taskDurationMs": 717.279,
      "heapDeltaBytes": 15892308,
      "heapUsedBytes": 58338280,
      "domNodes": 60,
      "jsHeapTotalBytes": 23592960,
      "scriptDurationMs": 129.296,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1730.985999999973,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 15.457999999999998,
      "layouts": 6,
      "layoutDurationMs": 0.539,
      "taskDurationMs": 278.114,
      "heapDeltaBytes": 24697812,
      "heapUsedBytes": 67577036,
      "domNodes": 78,
      "jsHeapTotalBytes": 20709376,
      "scriptDurationMs": 22.347,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1735.0410000000238,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 17.759999999999998,
      "layouts": 6,
      "layoutDurationMs": 0.6219999999999999,
      "taskDurationMs": 290.449,
      "heapDeltaBytes": 24725584,
      "heapUsedBytes": 67175544,
      "domNodes": 80,
      "jsHeapTotalBytes": 20447232,
      "scriptDurationMs": 24.657000000000004,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1733.5729999999785,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 17.487999999999996,
      "layouts": 6,
      "layoutDurationMs": 0.6349999999999999,
      "taskDurationMs": 292.851,
      "heapDeltaBytes": 15776268,
      "heapUsedBytes": 67249604,
      "domNodes": 79,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 25.01300000000001,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 527.3070000000075,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 9.331,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 331.86199999999997,
      "heapDeltaBytes": 6545420,
      "heapUsedBytes": 49152708,
      "domNodes": 22,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 63.03900000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 511.649000000034,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 11.485000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 331.437,
      "heapDeltaBytes": 6542592,
      "heapUsedBytes": 49019020,
      "domNodes": 22,
      "jsHeapTotalBytes": 12845056,
      "scriptDurationMs": 65.08900000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.669999999999998,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 537.4490000000378,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 9.538000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 327.87699999999995,
      "heapDeltaBytes": 6153588,
      "heapUsedBytes": 49010252,
      "domNodes": 22,
      "jsHeapTotalBytes": 13631488,
      "scriptDurationMs": 66.47900000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2020.2259999999796,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.521,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 531.415,
      "heapDeltaBytes": 2027564,
      "heapUsedBytes": 52723396,
      "domNodes": -255,
      "jsHeapTotalBytes": 15921152,
      "scriptDurationMs": 93.681,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2028.2029999999622,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.011999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 527.849,
      "heapDeltaBytes": 4841588,
      "heapUsedBytes": 55507532,
      "domNodes": -258,
      "jsHeapTotalBytes": 15921152,
      "scriptDurationMs": 96.589,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2012.681999999927,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 9.524000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 531.5920000000001,
      "heapDeltaBytes": 6823524,
      "heapUsedBytes": 65607908,
      "domNodes": -255,
      "jsHeapTotalBytes": 16035840,
      "scriptDurationMs": 92.406,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2131.1450000000036,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.233,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1038.569,
      "heapDeltaBytes": 15481824,
      "heapUsedBytes": 68396200,
      "domNodes": -258,
      "jsHeapTotalBytes": 18485248,
      "scriptDurationMs": 383.17400000000004,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2105.8460000000423,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.931000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1037.9279999999999,
      "heapDeltaBytes": 16272864,
      "heapUsedBytes": 68158960,
      "domNodes": -260,
      "jsHeapTotalBytes": 17698816,
      "scriptDurationMs": 382.14300000000003,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2165.6770000000733,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.702,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1053.645,
      "heapDeltaBytes": 16375356,
      "heapUsedBytes": 68380096,
      "domNodes": -260,
      "jsHeapTotalBytes": 18485248,
      "scriptDurationMs": 396.015,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3152.5139999999965,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 17.307,
      "layouts": 60,
      "layoutDurationMs": 6.848999999999999,
      "taskDurationMs": 1274.8819999999998,
      "heapDeltaBytes": 6887944,
      "heapUsedBytes": 61813436,
      "domNodes": -263,
      "jsHeapTotalBytes": 18018304,
      "scriptDurationMs": 480.245,
      "eventListeners": -123,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3161.989999999946,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 16.232999999999997,
      "layouts": 60,
      "layoutDurationMs": 6.886,
      "taskDurationMs": 1266.7579999999998,
      "heapDeltaBytes": 7276480,
      "heapUsedBytes": 61927856,
      "domNodes": -264,
      "jsHeapTotalBytes": 17231872,
      "scriptDurationMs": 473.81999999999994,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3167.0990000000074,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 15.200999999999999,
      "layouts": 60,
      "layoutDurationMs": 6.930000000000001,
      "taskDurationMs": 1270.014,
      "heapDeltaBytes": 9294284,
      "heapUsedBytes": 64247516,
      "domNodes": -265,
      "jsHeapTotalBytes": 15921152,
      "scriptDurationMs": 471.03099999999995,
      "eventListeners": -123,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2019.5949999999812,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.275999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 510.08200000000005,
      "heapDeltaBytes": 4455980,
      "heapUsedBytes": 56783128,
      "domNodes": -261,
      "jsHeapTotalBytes": 15134720,
      "scriptDurationMs": 95.60199999999999,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2009.1549999999643,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.716999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 512.988,
      "heapDeltaBytes": 3663196,
      "heapUsedBytes": 56447052,
      "domNodes": -258,
      "jsHeapTotalBytes": 16707584,
      "scriptDurationMs": 94.53500000000001,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "minimap-idle",
      "durationMs": 2021.9940000000634,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.303000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 509.72400000000005,
      "heapDeltaBytes": 4255276,
      "heapUsedBytes": 56437016,
      "domNodes": -258,
      "jsHeapTotalBytes": 16183296,
      "scriptDurationMs": 93.75500000000001,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 541.5120000000115,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.623000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 344.32700000000006,
      "heapDeltaBytes": 6784640,
      "heapUsedBytes": 49625128,
      "domNodes": 22,
      "jsHeapTotalBytes": 12582912,
      "scriptDurationMs": 121.72400000000002,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 533.0490000000054,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.185,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 340.52299999999997,
      "heapDeltaBytes": 6556712,
      "heapUsedBytes": 49604536,
      "domNodes": 20,
      "jsHeapTotalBytes": 12845056,
      "scriptDurationMs": 120.80499999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 535.0750000000062,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.495999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 337.767,
      "heapDeltaBytes": 6560824,
      "heapUsedBytes": 49579340,
      "domNodes": 22,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 120.93499999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1997.6230000000328,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.421,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 333.069,
      "heapDeltaBytes": 20825148,
      "heapUsedBytes": 63992876,
      "domNodes": 22,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 17.014,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2001.3959999999997,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.730000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 337.82800000000003,
      "heapDeltaBytes": 20362200,
      "heapUsedBytes": 63034068,
      "domNodes": 21,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 17.465,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2022.8060000000596,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.765999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 328.2,
      "heapDeltaBytes": 19970080,
      "heapUsedBytes": 63122516,
      "domNodes": 22,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 16.988,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1954.2379999999753,
      "styleRecalcs": 85,
      "styleRecalcDurationMs": 43.29,
      "layouts": 16,
      "layoutDurationMs": 3.9979999999999998,
      "taskDurationMs": 863.509,
      "heapDeltaBytes": 11880564,
      "heapUsedBytes": 54713340,
      "domNodes": 74,
      "jsHeapTotalBytes": 22544384,
      "scriptDurationMs": 97.852,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1970.7910000000766,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 42.442,
      "layouts": 16,
      "layoutDurationMs": 4.135,
      "taskDurationMs": 862.401,
      "heapDeltaBytes": 11887552,
      "heapUsedBytes": 54945212,
      "domNodes": 73,
      "jsHeapTotalBytes": 22282240,
      "scriptDurationMs": 97.269,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1965.9970000000158,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 42.563,
      "layouts": 16,
      "layoutDurationMs": 4.037,
      "taskDurationMs": 884.539,
      "heapDeltaBytes": 11807504,
      "heapUsedBytes": 54576484,
      "domNodes": 73,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 98.828,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8188.0820000000085,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 40.674,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3545.036,
      "heapDeltaBytes": 13611656,
      "heapUsedBytes": 62005100,
      "domNodes": -257,
      "jsHeapTotalBytes": 20496384,
      "scriptDurationMs": 1243.917,
      "eventListeners": -105,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8184.877000000029,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 42.467999999999996,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3468.389,
      "heapDeltaBytes": 26696032,
      "heapUsedBytes": 77716652,
      "domNodes": -256,
      "jsHeapTotalBytes": 18485248,
      "scriptDurationMs": 1214.519,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8211.393999999927,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 42.465999999999994,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3549.0220000000004,
      "heapDeltaBytes": 29078720,
      "heapUsedBytes": 79565720,
      "domNodes": -256,
      "jsHeapTotalBytes": 19271680,
      "scriptDurationMs": 1229.577,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11521.600000000035,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11508.9,
      "heapDeltaBytes": -28304436,
      "heapUsedBytes": 166294580,
      "domNodes": -8331,
      "jsHeapTotalBytes": 27090944,
      "scriptDurationMs": 556.91,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11415.50600000005,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11404.473,
      "heapDeltaBytes": -50189700,
      "heapUsedBytes": 158149004,
      "domNodes": -8331,
      "jsHeapTotalBytes": 17391616,
      "scriptDurationMs": 575.819,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11700.229000000036,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11689.974,
      "heapDeltaBytes": -24682620,
      "heapUsedBytes": 167036176,
      "domNodes": -8331,
      "jsHeapTotalBytes": 27090944,
      "scriptDurationMs": 556.956,
      "eventListeners": -16462,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333237,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 13932.326999999987,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 12.64700000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13910.495,
      "heapDeltaBytes": -45065876,
      "heapUsedBytes": 165453232,
      "domNodes": -8331,
      "jsHeapTotalBytes": 27877376,
      "scriptDurationMs": 821.0519999999999,
      "eventListeners": -16460,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 33.30000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14149.373000000083,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 12.945999999999986,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14128.297,
      "heapDeltaBytes": -23016024,
      "heapUsedBytes": 173785284,
      "domNodes": -8333,
      "jsHeapTotalBytes": 24907776,
      "scriptDurationMs": 825.115,
      "eventListeners": -16458,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 33.29999999999927
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 13875.147999999968,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 12.830999999999982,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13857.860999999999,
      "heapDeltaBytes": -47279264,
      "heapUsedBytes": 163167996,
      "domNodes": -8331,
      "jsHeapTotalBytes": 21848064,
      "scriptDurationMs": 836.902,
      "eventListeners": -16462,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 455.41400000001886,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 24.262,
      "layouts": 4,
      "layoutDurationMs": 1.1850000000000003,
      "taskDurationMs": 113.72700000000002,
      "heapDeltaBytes": 4624276,
      "heapUsedBytes": 49153596,
      "domNodes": 169,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 23.705,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 441.29899999995814,
      "styleRecalcs": 16,
      "styleRecalcDurationMs": 20.922000000000004,
      "layouts": 5,
      "layoutDurationMs": 1.0990000000000002,
      "taskDurationMs": 114.046,
      "heapDeltaBytes": 4498672,
      "heapUsedBytes": 48867284,
      "domNodes": 156,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 28.39099999999999,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "workflow-execution",
      "durationMs": 449.28300000003674,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 26.202999999999996,
      "layouts": 4,
      "layoutDurationMs": 1.0090000000000001,
      "taskDurationMs": 112.91799999999999,
      "heapDeltaBytes": 4395480,
      "heapUsedBytes": 48408568,
      "domNodes": 159,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 22.212999999999997,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@browser_tests/tests/workflowReopenOverwrite.spec.ts`:
- Around line 44-49: The test mutates widgets_values[0] on the serialized
KSampler node which hardcodes widget ordering; instead locate the live node's
seed widget index by name and use that index to update the serialized node's
widgets_values array. In practice, find the node where n.type === 'KSampler'
(ksNode), inspect its widgets (or widgets_meta) to find the seed widget
name/key, get that index, and then assign the seed value into
ksNode.widgets_values[seedIndex] rather than using 0.
- Around line 67-75: The assertion is too permissive and uses a hardcoded
baseline; capture the workflow count before reload (e.g.,
preReloadWorkflowCount) and then replace the OR check so the test only passes if
either seedAfterReload === modifiedSeed (preserved) or workflowCount ===
preReloadWorkflowCount + 1 (a single new tab opened), instead of comparing to a
fixed > 2 value; update the expect message to reference preReloadWorkflowCount,
modifiedSeed, and seedAfterReload to make failures clear and remove the brittle
hardcoded threshold.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 26c494b7-3b0a-498b-b288-e03f3140b692

📥 Commits

Reviewing files that changed from the base of the PR and between 17d2870 and b5ea4a2.

📒 Files selected for processing (2)
  • browser_tests/tests/workflowReopenOverwrite.spec.ts
  • src/platform/workflow/core/services/workflowService.ts

- Resolve seed widget index by name instead of hardcoding [0]
- Capture workflow count before reload for relative comparison
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
browser_tests/tests/workflowReopenOverwrite.spec.ts (1)

16-17: Unnecessary nextFrame() after loadWorkflow().

Per repository conventions, comfyPage.loadWorkflow() already handles all necessary synchronization and waiting. The nextFrame() call on line 17 is redundant.

♻️ Suggested simplification
     // Step 1: Load a workflow from file (establishes a "source" filename)
     await comfyPage.workflow.loadWorkflow('nodes/single_ksampler')
-    await comfyPage.nextFrame()

Based on learnings: "In browser_tests tests for the Comfy-Org/ComfyUI_frontend repository, the comfyPage.loadWorkflow() method already handles all necessary synchronization and waiting."

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@browser_tests/tests/workflowReopenOverwrite.spec.ts` around lines 16 - 17,
Remove the redundant call to comfyPage.nextFrame() that immediately follows
comfyPage.workflow.loadWorkflow('nodes/single_ksampler'); loadWorkflow already
performs the necessary synchronization/waiting, so delete the
comfyPage.nextFrame() invocation (referencing comfyPage.workflow.loadWorkflow
and comfyPage.nextFrame) to simplify the test.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@browser_tests/tests/workflowReopenOverwrite.spec.ts`:
- Around line 16-17: Remove the redundant call to comfyPage.nextFrame() that
immediately follows comfyPage.workflow.loadWorkflow('nodes/single_ksampler');
loadWorkflow already performs the necessary synchronization/waiting, so delete
the comfyPage.nextFrame() invocation (referencing
comfyPage.workflow.loadWorkflow and comfyPage.nextFrame) to simplify the test.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: ad95fa2f-40b3-4a36-9b93-b96b48e14773

📥 Commits

Reviewing files that changed from the base of the PR and between b5ea4a2 and b457a27.

📒 Files selected for processing (1)
  • browser_tests/tests/workflowReopenOverwrite.spec.ts

coderabbitai[bot]
coderabbitai bot previously approved these changes Apr 3, 2026
The programmatic widget edit did not fire checkState(), so isModified
stayed false and the fix had no effect. Call checkState() explicitly
to mirror what happens on mouseup/keyup during real user interaction.
@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 3, 2026

QA 🔍 Focused

QA Badge

Linux QA

Run: https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/23936435159 · Download artifacts · All videos
Commits: main 17d2870 · PR 863c208

Video Review

linux QA Video Report

AI Review

Summary

The PR fixes a bug where re-loading a workflow file that is already open and has unsaved changes would silently overwrite those changes without warning. The fix adds a check to ensure that a workflow is only reused if it has not been modified; otherwise, it opens a new tab.

  • BEFORE video confirms the issue: an automated QA annotation explicitly identifies that "Unsaved changes [were] silently overwritten in the same tab".
  • AFTER video demonstrates that the same test sequence no longer triggers this bug condition, as the error label is absent, indicating the regression test passed.

Behavior Changes

Behavior Before (main) After (PR) Verdict
Re-loading a modified workflow Silently overwrites the active tab's changes with the file's original content. Prevents overwrite. The test asserts that either changes are preserved or a new tab is opened. Fixed
Modification guard in workflowService Only checked path/ID; allowed overwriting modified tabs. Now checks !existingWorkflow.isModified, preventing accidental data loss. Fixed
Tab state preservation Unsaved edits (e.g., widget values) are lost on reload. Unsaved edits are preserved in the original tab. Fixed

Timeline Comparison

Time Type Severity Before (main) After (PR)
0:05-0:09 State None Templates modal is opened and closed during test setup. Templates modal is opened and closed during test setup.
0:12-0:13 Menu None Automated script navigates the "File" menu to initiate a reload. Automated script navigates the "File" menu to initiate a reload.
0:16 Behavior Fixed QA Label appears: "QA: Bug: Unsaved changes silently overwritten in the same tab". No bug label appears; the test condition for failure is not met.

Confirmed Issues

[Unsaved changes silently overwritten]

MAJOR 0:16 Confidence: HIGH
In the BEFORE video, re-loading the same workflow file causes the application to discard unsaved modifications without prompting the user. This is explicitly flagged by the test suite's diagnostic label. This issue is resolved in the AFTER video.
Evidence: Purple/cyan annotation "QA: Bug: Unsaved changes silently overwritten in the same tab" appears at 0:16 in Video 1.
Suggested Fix: (Already implemented in PR) Guard the isSameActiveWorkflowLoad check with an isModified check.


Overall Risk

The risk is low. The change is a targeted logical guard in the workflow loading service that specifically protects against data loss when a user drags-and-drops or re-opens a file they are currently editing. The provided regression test ensures this specific scenario is covered.

Verdict

{"verdict": "REPRODUCED", "risk": "low", "confidence": "high"}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Frontend eats changes when opening another workflow from same source as current

1 participant