Skip to content

fix: remove failed to export toast when cancelling export workflow#12134

Merged
pythongosssss merged 2 commits into
mainfrom
pysssss/fix-export-cancel-error-toast
May 12, 2026
Merged

fix: remove failed to export toast when cancelling export workflow#12134
pythongosssss merged 2 commits into
mainfrom
pysssss/fix-export-cancel-error-toast

Conversation

@pythongosssss
Copy link
Copy Markdown
Member

@pythongosssss pythongosssss commented May 11, 2026

Summary

An incorrect error toast currently shows when cancelling the workflow export from an asset

Changes

  • What:
  • skip toast on cancel
  • add e2e & unit tests
  • refactor asset tab open helper to wait by default & cleanup usage

┆Issue is synchronized with this Notion page by Unito

- add e2e & unit tests
- refactor asset tab open to wait by default & cleanup
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 11, 2026

Review Change Stack
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: e159b99a-2349-4f77-9dee-0389e376d355

📥 Commits

Reviewing files that changed from the base of the PR and between 6db2328 and 3be9e51.

📒 Files selected for processing (3)
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/composables/useMediaAssetActions.ts
  • src/platform/workflow/core/services/workflowActionsService.test.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/platform/assets/composables/useMediaAssetActions.ts

📝 Walkthrough

Walkthrough

This PR adds a cancellable export result for workflows, updates composable logic to ignore cancelled exports, extends unit and E2E tests (including three new export context-menu tests), adds toast locators and an optional waitForAssets flag for the sidebar test helper, and removes many explicit waitForAssets() calls across sidebar tests.

Changes

Workflow Export with Cancellation

Layer / File(s) Summary
Export Return Type
src/platform/workflow/core/services/workflowActionsService.ts
exportWorkflowAction return type extended with optional cancelled boolean flag.
Cancel Path Implementation
src/platform/workflow/core/services/workflowActionsService.ts
When the filename prompt is dismissed, the function now returns { success: false, cancelled: true }.
Composable Cancellation Handling
src/platform/assets/composables/useMediaAssetActions.ts
Single-asset exportWorkflow returns early when cancelled, skipping toast notifications; multi-asset exportMultipleWorkflows excludes cancelled results from failure counts and returns early when all were cancelled.
Test Helper Extensions
browser_tests/fixtures/helpers/ToastHelper.ts, browser_tests/fixtures/components/SidebarTab.ts
ToastHelper adds toastSuccesses and toastWarnings locators; AssetsSidebarTab.open accepts optional { waitForAssets } to control conditional waiting in tests.
Composable Unit Tests
src/platform/assets/composables/useMediaAssetActions.test.ts
Hoisted workflow service mocks and new tests covering cancellation (no toast), success (success toast), failure (error toast), and missing workflow (warning toast); bulk export cases added.
E2E Mock Data & Empty States
browser_tests/tests/sidebar/assets.spec.ts
Mock job detail extended with workflow data; empty-state tests open assets tab with { waitForAssets: false } and assert expected titles/card counts.
E2E Synchronization Refactor
browser_tests/tests/sidebar/assets.spec.ts
Many explicit waitForAssets() calls removed across grid view, toggles, search, selection, context menu, bulk actions, cloud exports, pagination, delete, and media-type filter tests.
E2E Export Workflow Tests
browser_tests/tests/sidebar/assets.spec.ts
Three new context-menu tests verify: cancelling prompt (no toast), successful export with download and success toast, and exporting when no workflow shows a warning toast.
Workflow Service Unit Tests
src/platform/workflow/core/services/workflowActionsService.test.ts
New tests validate prompt-cancel, prompted filename download, disabled-prompt download using default filename, and null-workflow error behavior.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Poem

A rabbit hops through workflows bright,
Cancels a prompt, the toasts sit tight,
Downloads hum when names are given,
Warnings whisper when data's missing,
Tests and helpers snugly fit. 🐰✨

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (2 warnings)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description is incomplete, missing critical structured sections. While it identifies the issue and lists changes, the PR template requires specific sections like Summary, Changes with 'What', and Review Focus that are either missing or inadequately filled. Expand the description to follow the template: add a complete Summary sentence, fill out the 'What' section with concrete details, add a Review Focus section highlighting key design decisions or edge cases that reviewers should examine.
Docstring Coverage ⚠️ Warning Docstring coverage is 33.33% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately and specifically describes the main fix: preventing the error toast from appearing when users cancel the workflow export, which is the core objective of this PR.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ 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 pysssss/fix-export-cancel-error-toast

Warning

Review ran into problems

🔥 Problems

Git: Failed to clone repository. Please run the @coderabbitai full review command to re-trigger a full review. If the issue persists, set path_filters to include or exclude specific files.


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 May 11, 2026

🎭 Playwright: ✅ 1561 passed, 0 failed · 3 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1540 / ❌ 0 / ⚠️ 3 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 18 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 11, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 05/11/2026, 03:53:12 PM UTC

Links

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: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/platform/assets/composables/useMediaAssetActions.ts`:
- Around line 568-572: The success/failure toast logic in
useMediaAssetActions.ts incorrectly shows a success when all multi-export items
were cancelled because cancelled items don't increment failed; update the final
notification branching to rely on the succeeded and failed counters (e.g., only
show the success toast if succeeded > 0) and only show the failure toast if
failed > 0; adjust any "all done" / summary message generation to account for
cancelled items (use result.cancelled when computing counts) so a
fully-cancelled run does not produce a success notification. Ensure you update
the code paths that reference result.success, result.cancelled, succeeded, and
failed so the messages and counters reflect cancelled-only outcomes.
🪄 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: df5d35b2-e7bf-4ca7-babe-597fdae25e12

📥 Commits

Reviewing files that changed from the base of the PR and between 02e1ba2 and 6db2328.

📒 Files selected for processing (6)
  • browser_tests/fixtures/components/SidebarTab.ts
  • browser_tests/fixtures/helpers/ToastHelper.ts
  • browser_tests/tests/sidebar/assets.spec.ts
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/composables/useMediaAssetActions.ts
  • src/platform/workflow/core/services/workflowActionsService.ts

Comment thread src/platform/assets/composables/useMediaAssetActions.ts
@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 11, 2026

📦 Bundle: 5.31 MB gzip 🔴 +30 B

Details

Summary

  • Raw size: 24.5 MB baseline 24.5 MB — 🔴 +157 B
  • Gzip: 5.31 MB baseline 5.31 MB — 🔴 +30 B
  • Brotli: 4.1 MB baseline 4.1 MB — 🟢 -2 B
  • Bundles: 260 current • 260 baseline • 118 added / 118 removed

Category Glance
Data & Services 🔴 +157 B (3.14 MB) · Vendor & Third-Party ⚪ 0 B (9.94 MB) · Other ⚪ 0 B (8.98 MB) · Graph Workspace ⚪ 0 B (1.24 MB) · Panels & Settings ⚪ 0 B (491 kB) · Utilities & Hooks ⚪ 0 B (367 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index--YDIFPRR.js (new) 31.6 kB 🔴 +31.6 kB 🔴 +9.81 kB 🔴 +8.44 kB
assets/index-d_ldCg_Z.js (removed) 31.6 kB 🟢 -31.6 kB 🟢 -9.81 kB 🟢 -8.47 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CCD4Si8s.js (new) 1.24 MB 🔴 +1.24 MB 🔴 +265 kB 🔴 +200 kB
assets/GraphView-DlzlRlS8.js (removed) 1.24 MB 🟢 -1.24 MB 🟢 -265 kB 🟢 -200 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BfOF6y6B.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.58 kB
assets/CloudSurveyView-Dt_UTdiJ.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.57 kB
assets/CloudLoginView-B9vpL5QE.js (new) 12.5 kB 🔴 +12.5 kB 🔴 +3.51 kB 🔴 +3.11 kB
assets/CloudLoginView-BYhSmzit.js (removed) 12.5 kB 🟢 -12.5 kB 🟢 -3.51 kB 🟢 -3.1 kB
assets/CloudSignupView-BOCLn13k.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -3.02 kB 🟢 -2.66 kB
assets/CloudSignupView-CybWxM68.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +3.02 kB 🔴 +2.67 kB
assets/UserCheckView-CqSGMSq0.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.33 kB 🔴 +2.04 kB
assets/UserCheckView-DpCw896v.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.33 kB 🟢 -2.05 kB
assets/CloudLayoutView-CnbGmC2H.js (new) 7.73 kB 🔴 +7.73 kB 🔴 +2.45 kB 🔴 +2.14 kB
assets/CloudLayoutView-RgXDzToO.js (removed) 7.73 kB 🟢 -7.73 kB 🟢 -2.45 kB 🟢 -2.15 kB
assets/CloudForgotPasswordView-Cs2Oa-xu.js (new) 6.14 kB 🔴 +6.14 kB 🔴 +2.18 kB 🔴 +1.92 kB
assets/CloudForgotPasswordView-CVplm2cr.js (removed) 6.14 kB 🟢 -6.14 kB 🟢 -2.18 kB 🟢 -1.92 kB
assets/CloudAuthTimeoutView-BfSwnxFY.js (new) 5.5 kB 🔴 +5.5 kB 🔴 +2.02 kB 🔴 +1.77 kB
assets/CloudAuthTimeoutView-C85RxmBF.js (removed) 5.5 kB 🟢 -5.5 kB 🟢 -2.01 kB 🟢 -1.77 kB
assets/CloudSubscriptionRedirectView-BocfitJF.js (new) 5.28 kB 🔴 +5.28 kB 🔴 +1.99 kB 🔴 +1.77 kB
assets/CloudSubscriptionRedirectView-QXi0KoQd.js (removed) 5.28 kB 🟢 -5.28 kB 🟢 -2 kB 🟢 -1.8 kB
assets/UserSelectView-BcTrkvj_.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/UserSelectView-DsTeyFxD.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.75 kB 🔴 +1.55 kB

Status: 9 added / 9 removed / 2 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-C9Gcrlk_.js (new) 47.4 kB 🔴 +47.4 kB 🔴 +9.83 kB 🔴 +8.73 kB
assets/KeybindingPanel-KY7iC1_P.js (removed) 47.4 kB 🟢 -47.4 kB 🟢 -9.83 kB 🟢 -8.73 kB
assets/SecretsPanel-Ca_kJH7_.js (removed) 22.9 kB 🟢 -22.9 kB 🟢 -5.54 kB 🟢 -4.87 kB
assets/SecretsPanel-p4RuYzJ8.js (new) 22.9 kB 🔴 +22.9 kB 🔴 +5.54 kB 🔴 +4.88 kB
assets/LegacyCreditsPanel-BrH2uWLl.js (removed) 21.7 kB 🟢 -21.7 kB 🟢 -5.9 kB 🟢 -5.2 kB
assets/LegacyCreditsPanel-D1XipZbi.js (new) 21.7 kB 🔴 +21.7 kB 🔴 +5.9 kB 🔴 +5.21 kB
assets/SubscriptionPanel-bRGzBK84.js (removed) 20 kB 🟢 -20 kB 🟢 -5.11 kB 🟢 -4.48 kB
assets/SubscriptionPanel-Dlrm1GRr.js (new) 20 kB 🔴 +20 kB 🔴 +5.11 kB 🔴 +4.5 kB
assets/AboutPanel-BfhP8Ubn.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +2.99 kB
assets/AboutPanel-Da3h3Orj.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.99 kB
assets/ExtensionPanel-BNAia2iB.js (removed) 9.97 kB 🟢 -9.97 kB 🟢 -2.91 kB 🟢 -2.58 kB
assets/ExtensionPanel-BuuabaWy.js (new) 9.97 kB 🔴 +9.97 kB 🔴 +2.91 kB 🔴 +2.58 kB
assets/ServerConfigPanel-DNXNaXuR.js (new) 7.05 kB 🔴 +7.05 kB 🔴 +2.36 kB 🔴 +2.11 kB
assets/ServerConfigPanel-VaMrkUfM.js (removed) 7.05 kB 🟢 -7.05 kB 🟢 -2.36 kB 🟢 -2.1 kB
assets/UserPanel-CmmauAwX.js (new) 6.76 kB 🔴 +6.76 kB 🔴 +2.24 kB 🔴 +1.96 kB
assets/UserPanel-DflnUjR2.js (removed) 6.76 kB 🟢 -6.76 kB 🟢 -2.24 kB 🟢 -1.96 kB
assets/cloudRemoteConfig-lNR1TEcv.js (removed) 2.05 kB 🟢 -2.05 kB 🟢 -988 B 🟢 -848 B
assets/cloudRemoteConfig-mEXRq4eL.js (new) 2.05 kB 🔴 +2.05 kB 🔴 +989 B 🔴 +849 B
assets/refreshRemoteConfig-BYljtUiw.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +648 B 🔴 +549 B
assets/refreshRemoteConfig-NUjVlQDl.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -649 B 🟢 -551 B

Status: 10 added / 10 removed / 12 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-M1tDwNBt.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.11 kB
assets/auth-YoOJaa89.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.12 kB
assets/SignUpForm-B7nNLIMw.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-Cup2PZ4u.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-D--YiHQU.js (removed) 2.9 kB 🟢 -2.9 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/UpdatePasswordContent-D3Q44sgw.js (new) 2.9 kB 🔴 +2.9 kB 🔴 +1.3 kB 🔴 +1.15 kB
assets/authStore-CjF_qcs9.js (new) 1.19 kB 🔴 +1.19 kB 🔴 +564 B 🔴 +500 B
assets/authStore-CWHhcF_9.js (removed) 1.19 kB 🟢 -1.19 kB 🟢 -564 B 🟢 -501 B
assets/auth-B7QGOd0I.js (removed) 348 B 🟢 -348 B 🟢 -216 B 🟢 -191 B
assets/auth-DjWuwR_z.js (new) 348 B 🔴 +348 B 🔴 +217 B 🔴 +190 B

Status: 5 added / 5 removed / 2 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-BdpYdj8F.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/ComfyHubPublishDialog-DCg7yPA4.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/useShareDialog-C-RhDmH6.js (removed) 23.8 kB 🟢 -23.8 kB 🟢 -5.78 kB 🟢 -5.12 kB
assets/useShareDialog-YntPR43x.js (new) 23.8 kB 🔴 +23.8 kB 🔴 +5.77 kB 🔴 +5.12 kB
assets/ComfyHubPublishDialog-CqS6-Ppn.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +626 B 🔴 +567 B
assets/ComfyHubPublishDialog-DG1sn-Gt.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -627 B 🟢 -564 B
assets/useSubscriptionDialog-CKt42LQS.js (removed) 1.17 kB 🟢 -1.17 kB 🟢 -556 B 🟢 -492 B
assets/useSubscriptionDialog-D2Qav1SL.js (new) 1.17 kB 🔴 +1.17 kB 🔴 +556 B 🔴 +491 B

Status: 4 added / 4 removed

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-3n2RR1sm.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.38 kB
assets/ComfyQueueButton-aaXvn_PF.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/useTerminalTabs-D_EB4XNh.js (new) 11 kB 🔴 +11 kB 🔴 +3.73 kB 🔴 +3.28 kB
assets/useTerminalTabs-FAd7YtA7.js (removed) 11 kB 🟢 -11 kB 🟢 -3.73 kB 🟢 -3.28 kB
assets/SubscribeButton-CIJxWQu1.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -926 B
assets/SubscribeButton-DCM0Pquy.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +926 B
assets/cloudFeedbackTopbarButton-C4RF0R6j.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -934 B 🟢 -818 B
assets/cloudFeedbackTopbarButton-Cult4-SV.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +932 B 🔴 +820 B
assets/ComfyQueueButton-Cid_R5BB.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +593 B 🔴 +532 B
assets/ComfyQueueButton-CXo4H1GJ.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -592 B 🟢 -528 B

Status: 5 added / 5 removed / 9 unchanged

Data & Services — 3.14 MB (baseline 3.14 MB) • 🔴 +157 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-By-FoMT2.js (new) 2.08 MB 🔴 +2.08 MB 🔴 +473 kB 🔴 +358 kB
assets/dialogService-CvH6LnEK.js (removed) 2.08 MB 🟢 -2.08 MB 🟢 -473 kB 🟢 -358 kB
assets/api-BN_PbyO7.js (new) 888 kB 🔴 +888 kB 🔴 +212 kB 🔴 +167 kB
assets/api-DZfOHku8.js (removed) 888 kB 🟢 -888 kB 🟢 -212 kB 🟢 -167 kB
assets/load3dService-DcnMzYLR.js (removed) 116 kB 🟢 -116 kB 🟢 -25.4 kB 🟢 -21.6 kB
assets/load3dService-DUKaG4m-.js (new) 116 kB 🔴 +116 kB 🔴 +25.4 kB 🔴 +21.6 kB
assets/workflowShareService-CkgR562Y.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.89 kB 🟢 -4.34 kB
assets/workflowShareService-DssS6fzG.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.89 kB 🔴 +4.34 kB
assets/keybindingService-BBB6xDKa.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.21 kB
assets/keybindingService-DQIGMaxX.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.21 kB
assets/releaseStore-BMToyKke.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/releaseStore-Ng9hPvRj.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/userStore-BLbKftxZ.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +933 B 🔴 +822 B
assets/userStore-DCmFqJom.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -933 B 🟢 -819 B
assets/audioService-BxV9WFX9.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +879 B 🔴 +765 B
assets/audioService-DKpRZTeP.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -876 B 🟢 -762 B
assets/releaseStore-CEaYXmOq.js (new) 1.19 kB 🔴 +1.19 kB 🔴 +558 B 🔴 +500 B
assets/releaseStore-tSg6Tkpf.js (removed) 1.19 kB 🟢 -1.19 kB 🟢 -561 B 🟢 -499 B
assets/workflowDraftStore-B-NOCKm3.js (removed) 1.17 kB 🟢 -1.17 kB 🟢 -555 B 🟢 -492 B
assets/workflowDraftStore-BZCvo8kZ.js (new) 1.17 kB 🔴 +1.17 kB 🔴 +554 B 🔴 +491 B
assets/dialogService-CYcksisA.js (new) 1.16 kB 🔴 +1.16 kB 🔴 +547 B 🔴 +490 B
assets/dialogService-DXh1MSBY.js (removed) 1.16 kB 🟢 -1.16 kB 🟢 -547 B 🟢 -490 B
assets/settingStore-B-SNmI2V.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +551 B 🔴 +488 B
assets/settingStore-DdhjfCsd.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -551 B 🟢 -487 B
assets/assetsStore-Cm1j5Ayu.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -550 B 🟢 -490 B
assets/assetsStore-gHt6PAJS.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +550 B 🔴 +490 B

Status: 13 added / 13 removed / 4 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BgqeiPa6.js (new) 234 kB 🔴 +234 kB 🔴 +52 kB 🔴 +42.4 kB
assets/useConflictDetection-C_fP0hYP.js (removed) 234 kB 🟢 -234 kB 🟢 -52 kB 🟢 -42.4 kB
assets/useLoad3d-CQ8sYAvd.js (removed) 22.7 kB 🟢 -22.7 kB 🟢 -5.22 kB 🟢 -4.61 kB
assets/useLoad3d-DwSstTJV.js (new) 22.7 kB 🔴 +22.7 kB 🔴 +5.22 kB 🔴 +4.6 kB
assets/useLoad3dViewer-BF5lAkzO.js (removed) 21 kB 🟢 -21 kB 🟢 -4.92 kB 🟢 -4.32 kB
assets/useLoad3dViewer-IdD7MSMm.js (new) 21 kB 🔴 +21 kB 🔴 +4.92 kB 🔴 +4.3 kB
assets/useFeatureFlags-DlSktucH.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.79 kB 🔴 +1.52 kB
assets/useFeatureFlags-Dpe2Wgrq.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.8 kB 🟢 -1.52 kB
assets/useCopyToClipboard-DC9vvDpN.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/useCopyToClipboard-DDTp-o-x.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/useWorkspaceUI-DWqY2LWh.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -983 B 🟢 -813 B
assets/useWorkspaceUI-JuQFThON.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +982 B 🔴 +813 B
assets/subscriptionCheckoutUtil-IYYMByVN.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/subscriptionCheckoutUtil-oUET5bNk.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.18 kB
assets/assetPreviewUtil-CWbfLAQ-.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1.01 kB 🟢 -875 B
assets/assetPreviewUtil-q0rDYL_N.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.01 kB 🔴 +876 B
assets/useUpstreamValue-CG24H49Z.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -806 B 🟢 -717 B
assets/useUpstreamValue-Cyifc4VM.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +808 B 🔴 +715 B
assets/useLoad3d-BwXaZdnz.js (removed) 1.33 kB 🟢 -1.33 kB 🟢 -619 B 🟢 -551 B
assets/useLoad3d-oDkh5xwB.js (new) 1.33 kB 🔴 +1.33 kB 🔴 +618 B 🔴 +567 B
assets/useLoad3dViewer-79mwOoAq.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +584 B 🔴 +527 B
assets/useLoad3dViewer-DvuzXSUK.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -585 B 🟢 -524 B
assets/useCurrentUser-pTaRAzr_.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -551 B 🟢 -490 B
assets/useCurrentUser-RjapkZmU.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +551 B 🔴 +490 B
assets/useWorkspaceSwitch-BRjoFWZj.js (removed) 747 B 🟢 -747 B 🟢 -386 B 🟢 -330 B
assets/useWorkspaceSwitch-qCsR_e21.js (new) 747 B 🔴 +747 B 🔴 +386 B 🔴 +333 B

Status: 13 added / 13 removed / 18 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-CscBVEST.js (new) 77.3 kB 🔴 +77.3 kB 🔴 +20 kB 🔴 +17.1 kB
assets/core-DcK3Nx0F.js (removed) 77.3 kB 🟢 -77.3 kB 🟢 -20 kB 🟢 -17.1 kB
assets/groupNode-Cexj9BHw.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/groupNode-D_EQ9AfE.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/WidgetSelect-Bm4e3wAG.js (new) 67.8 kB 🔴 +67.8 kB 🔴 +14.8 kB 🔴 +12.8 kB
assets/WidgetSelect-DNb3ErzF.js (removed) 67.8 kB 🟢 -67.8 kB 🟢 -14.8 kB 🟢 -12.8 kB
assets/SubscriptionRequiredDialogContentWorkspace-BMoGc_-I.js (removed) 48.8 kB 🟢 -48.8 kB 🟢 -9.52 kB 🟢 -8.2 kB
assets/SubscriptionRequiredDialogContentWorkspace-BsTjNMgu.js (new) 48.8 kB 🔴 +48.8 kB 🔴 +9.52 kB 🔴 +8.22 kB
assets/Load3DControls-7q7IQB8E.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.51 kB 🔴 +6.55 kB
assets/Load3DControls-BHOB_j2h.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.51 kB 🟢 -6.55 kB
assets/WorkspacePanelContent-C7ycRkxA.js (removed) 34.2 kB 🟢 -34.2 kB 🟢 -7.41 kB 🟢 -6.56 kB
assets/WorkspacePanelContent-Cq9zwDlr.js (new) 34.2 kB 🔴 +34.2 kB 🔴 +7.41 kB 🔴 +6.57 kB
assets/WidgetPainter-2fYGQL_e.js (removed) 33.5 kB 🟢 -33.5 kB 🟢 -8.28 kB 🟢 -7.35 kB
assets/WidgetPainter-CgTC3EXQ.js (new) 33.5 kB 🔴 +33.5 kB 🔴 +8.28 kB 🔴 +7.36 kB
assets/Load3dViewerContent-B9N8zkSw.js (new) 30.6 kB 🔴 +30.6 kB 🔴 +6.19 kB 🔴 +5.37 kB
assets/Load3dViewerContent-DcqNseKX.js (removed) 30.6 kB 🟢 -30.6 kB 🟢 -6.19 kB 🟢 -5.38 kB
assets/SubscriptionRequiredDialogContent-Cyn4CVOo.js (removed) 27.5 kB 🟢 -27.5 kB 🟢 -6.99 kB 🟢 -6.15 kB
assets/SubscriptionRequiredDialogContent-joFN3yeO.js (new) 27.5 kB 🔴 +27.5 kB 🔴 +6.98 kB 🔴 +6.17 kB
assets/WidgetImageCrop-3d5Smgxj.js (new) 24.3 kB 🔴 +24.3 kB 🔴 +6.2 kB 🔴 +5.45 kB
assets/WidgetImageCrop-RtM1Ugnd.js (removed) 24.3 kB 🟢 -24.3 kB 🟢 -6.2 kB 🟢 -5.47 kB
assets/SubscriptionPanelContentWorkspace-BIUC_5ot.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.18 kB 🟢 -4.57 kB
assets/SubscriptionPanelContentWorkspace-CNQ21_Pa.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.18 kB 🔴 +4.57 kB
assets/SignInContent-B98O3r8C.js (new) 20.8 kB 🔴 +20.8 kB 🔴 +5.43 kB 🔴 +4.76 kB
assets/SignInContent-DWa1UoHk.js (removed) 20.8 kB 🟢 -20.8 kB 🟢 -5.43 kB 🟢 -4.76 kB
assets/CurrentUserPopoverWorkspace-BE8VEABH.js (new) 20.8 kB 🔴 +20.8 kB 🔴 +4.95 kB 🔴 +4.42 kB
assets/CurrentUserPopoverWorkspace-C7-NXcHV.js (removed) 20.8 kB 🟢 -20.8 kB 🟢 -4.95 kB 🟢 -4.43 kB
assets/WidgetInputNumber-NoVZjGPT.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.29 kB
assets/WidgetInputNumber-q26yyjGC.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.29 kB
assets/Load3D-CmizefBU.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/Load3D-DSM-uLBY.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.83 kB
assets/WidgetRecordAudio-Blcm-9y2.js (removed) 17.5 kB 🟢 -17.5 kB 🟢 -5.04 kB 🟢 -4.5 kB
assets/WidgetRecordAudio-DmZToTIM.js (new) 17.5 kB 🔴 +17.5 kB 🔴 +5.04 kB 🔴 +4.52 kB
assets/WidgetRange-BHR1pPYL.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.61 kB 🟢 -4.12 kB
assets/WidgetRange-DKGN8agk.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.61 kB 🔴 +4.14 kB
assets/load3d-BUYrdlzZ2.js (new) 15.8 kB 🔴 +15.8 kB 🔴 +4.6 kB 🔴 +3.98 kB
assets/load3d-DEeFOHNO2.js (removed) 15.8 kB 🟢 -15.8 kB 🟢 -4.59 kB 🟢 -3.98 kB
assets/WaveAudioPlayer-c6_odPvX.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.69 kB 🔴 +3.23 kB
assets/WaveAudioPlayer-p3Q7A99B.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.69 kB 🟢 -3.23 kB
assets/WidgetCurve-BjT3GEum.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -3.93 kB 🟢 -3.56 kB
assets/WidgetCurve-Cw1hVuSW.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +3.93 kB 🔴 +3.55 kB
assets/TeamWorkspacesDialogContent-BQJCYL_e.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.42 kB 🔴 +3.04 kB
assets/TeamWorkspacesDialogContent-CCOX9rpV.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.42 kB 🟢 -3.04 kB
assets/nodeTemplates-DithDGpT.js (removed) 9.84 kB 🟢 -9.84 kB 🟢 -3.48 kB 🟢 -3.07 kB
assets/nodeTemplates-Dlq3zo_W.js (new) 9.84 kB 🔴 +9.84 kB 🔴 +3.48 kB 🔴 +3.07 kB
assets/NightlySurveyController-CjGSzv0W.js (new) 8.97 kB 🔴 +8.97 kB 🔴 +3.15 kB 🔴 +2.78 kB
assets/NightlySurveyController-DNMFywmm.js (removed) 8.97 kB 🟢 -8.97 kB 🟢 -3.15 kB 🟢 -2.78 kB
assets/Load3DConfiguration-BqjCMq7s.js (new) 8.77 kB 🔴 +8.77 kB 🔴 +2.61 kB 🔴 +2.29 kB
assets/Load3DConfiguration-D0gOYC5z.js (removed) 8.77 kB 🟢 -8.77 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/InviteMemberDialogContent-BUb5tLlc.js (removed) 7.94 kB 🟢 -7.94 kB 🟢 -2.52 kB 🟢 -2.21 kB
assets/InviteMemberDialogContent-BZx_j18q.js (new) 7.94 kB 🔴 +7.94 kB 🔴 +2.52 kB 🔴 +2.21 kB
assets/onboardingCloudRoutes-D2Jhi4zg.js (new) 6.73 kB 🔴 +6.73 kB 🔴 +2.12 kB 🔴 +1.81 kB
assets/onboardingCloudRoutes-meblnaLD.js (removed) 6.73 kB 🟢 -6.73 kB 🟢 -2.12 kB 🟢 -1.83 kB
assets/CreateWorkspaceDialogContent-1kFoqg4r.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +2.23 kB 🔴 +1.96 kB
assets/CreateWorkspaceDialogContent-DnwT2U7B.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -2.23 kB 🟢 -1.96 kB
assets/WidgetWithControl-DdmJMeQO.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -2.44 kB 🟢 -2.18 kB
assets/WidgetWithControl-DO2EFkjf.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +2.44 kB 🔴 +2.17 kB
assets/FreeTierDialogContent-CcLFzlvU.js (new) 6.01 kB 🔴 +6.01 kB 🔴 +2.13 kB 🔴 +1.89 kB
assets/FreeTierDialogContent-Cfz-Ezj7.js (removed) 6.01 kB 🟢 -6.01 kB 🟢 -2.13 kB 🟢 -1.9 kB
assets/EditWorkspaceDialogContent-BbUer4w6.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -2.2 kB 🟢 -1.94 kB
assets/EditWorkspaceDialogContent-CiUjFTH0.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +2.2 kB 🔴 +1.94 kB
assets/WidgetTextarea-BMZDxMrJ.js (new) 5.76 kB 🔴 +5.76 kB 🔴 +2.27 kB 🔴 +2 kB
assets/WidgetTextarea-BQpO8jpq.js (removed) 5.76 kB 🟢 -5.76 kB 🟢 -2.27 kB 🟢 -2 kB
assets/Preview3d-BblZ2N_O.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.92 kB 🟢 -1.68 kB
assets/Preview3d-CUfbbgM7.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.92 kB 🔴 +1.69 kB
assets/ValueControlPopover-6PEFAwG9.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.01 kB 🟢 -1.79 kB
assets/ValueControlPopover-DdKz7s6Y.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.01 kB 🔴 +1.81 kB
assets/CancelSubscriptionDialogContent-B-Pdz22G.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -2.06 kB 🟢 -1.81 kB
assets/CancelSubscriptionDialogContent-DZKzXqsH.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +2.05 kB 🔴 +1.81 kB
assets/DeleteWorkspaceDialogContent-BkaObYrN.js (new) 4.85 kB 🔴 +4.85 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/DeleteWorkspaceDialogContent-BTVeQ7mv.js (removed) 4.85 kB 🟢 -4.85 kB 🟢 -1.87 kB 🟢 -1.63 kB
assets/saveMesh-Bq_uyqo2.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.87 kB 🟢 -1.67 kB
assets/saveMesh-Clz2oSQV.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.87 kB 🔴 +1.66 kB
assets/LeaveWorkspaceDialogContent-D9XDwJdY.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/LeaveWorkspaceDialogContent-DQCQwWP6.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/RemoveMemberDialogContent-D4M06esM.js (new) 4.66 kB 🔴 +4.66 kB 🔴 +1.77 kB 🔴 +1.55 kB
assets/RemoveMemberDialogContent-DxTsXW9l.js (removed) 4.66 kB 🟢 -4.66 kB 🟢 -1.77 kB 🟢 -1.55 kB
assets/RevokeInviteDialogContent-BnHUgHrI.js (removed) 4.57 kB 🟢 -4.57 kB 🟢 -1.78 kB 🟢 -1.56 kB
assets/RevokeInviteDialogContent-DiAxCaF5.js (new) 4.57 kB 🔴 +4.57 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/InviteMemberUpsellDialogContent-CglAwcwm.js (new) 4.47 kB 🔴 +4.47 kB 🔴 +1.65 kB 🔴 +1.45 kB
assets/InviteMemberUpsellDialogContent-DQ2OYCXv.js (removed) 4.47 kB 🟢 -4.47 kB 🟢 -1.65 kB 🟢 -1.45 kB
assets/tierBenefits-B7w0-DEu.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.36 kB
assets/tierBenefits-DlzUu2jp.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/Media3DTop-BcT3F-hy.js (removed) 4.35 kB 🟢 -4.35 kB 🟢 -1.77 kB 🟢 -1.57 kB
assets/Media3DTop-D8BHhqdv.js (new) 4.35 kB 🔴 +4.35 kB 🔴 +1.77 kB 🔴 +1.56 kB
assets/cloudSessionCookie-CCIIsTX7.js (new) 4.31 kB 🔴 +4.31 kB 🔴 +1.57 kB 🔴 +1.38 kB
assets/cloudSessionCookie-DX1zlC0M.js (removed) 4.31 kB 🟢 -4.31 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/GlobalToast-Di-IyMYS.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/GlobalToast-QaCkkAJu.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.07 kB
assets/CloudRunButtonWrapper-6-vm_X6l.js (new) 2.23 kB 🔴 +2.23 kB 🔴 +1.02 kB 🔴 +909 B
assets/CloudRunButtonWrapper-BfhkIr-A.js (removed) 2.23 kB 🟢 -2.23 kB 🟢 -1.01 kB 🟢 -906 B
assets/SubscribeToRun-BzX9tKlX.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -983 B 🟢 -878 B
assets/SubscribeToRun-Ctm9GpeR.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +981 B 🔴 +874 B
assets/MediaAudioTop-B8GU0dOm.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1 kB 🟢 -860 B
assets/MediaAudioTop-CsgF-wKC.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1 kB 🔴 +859 B
assets/cloudBadges-BC3GYckf.js (new) 1.96 kB 🔴 +1.96 kB 🔴 +977 B 🔴 +847 B
assets/cloudBadges-Dw2W0-e9.js (removed) 1.96 kB 🟢 -1.96 kB 🟢 -975 B 🟢 -845 B
assets/cloudSubscription-B9eCRc7P.js (new) 1.88 kB 🔴 +1.88 kB 🔴 +900 B 🔴 +782 B
assets/cloudSubscription-BtaAJb74.js (removed) 1.88 kB 🟢 -1.88 kB 🟢 -899 B 🟢 -776 B
assets/graphHasMissingNodes-1p9nphJf.js (removed) 1.84 kB 🟢 -1.84 kB 🟢 -861 B 🟢 -754 B
assets/graphHasMissingNodes-BG4zfZ-T.js (new) 1.84 kB 🔴 +1.84 kB 🔴 +861 B 🔴 +775 B
assets/Load3D-DJvd731t.js (removed) 1.58 kB 🟢 -1.58 kB 🟢 -708 B 🟢 -630 B
assets/Load3D-ZRZ4Tw9N.js (new) 1.58 kB 🔴 +1.58 kB 🔴 +715 B 🔴 +632 B
assets/previousFullPath-dWM4Y4oD.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +693 B 🔴 +592 B
assets/previousFullPath-jEgvJmIg.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -693 B 🟢 -613 B
assets/nightlyBadges-D7zR9o6p.js (new) 1.49 kB 🔴 +1.49 kB 🔴 +744 B 🔴 +660 B
assets/nightlyBadges-DvPgbTnc.js (removed) 1.49 kB 🟢 -1.49 kB 🟢 -745 B 🟢 -664 B
assets/Load3dViewerContent-BBXB3ZVv.js (removed) 1.46 kB 🟢 -1.46 kB 🟢 -661 B 🟢 -583 B
assets/Load3dViewerContent-CvzLzbj6.js (new) 1.46 kB 🔴 +1.46 kB 🔴 +661 B 🔴 +586 B
assets/SubscriptionPanelContentWorkspace-C3QWVZ88.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -615 B 🟢 -534 B
assets/SubscriptionPanelContentWorkspace-D0pXaOuW.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +617 B 🔴 +540 B
assets/WidgetLegacy-DrDG4OqE.js (new) 1.18 kB 🔴 +1.18 kB 🔴 +562 B 🔴 +499 B
assets/WidgetLegacy-DWK49Rjr.js (removed) 1.18 kB 🟢 -1.18 kB 🟢 -562 B 🟢 -497 B
assets/changeTracker-CjMhhXJJ.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -551 B 🟢 -487 B
assets/changeTracker-DVFPLP5a.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +551 B 🔴 +487 B

Status: 57 added / 57 removed / 79 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.7 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.0 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 42.4 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.9 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 83.8 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.5 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 98.1 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 98.8 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.0 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.7 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.7 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 147ms TBT · 108.7 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 136.6 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 217.1 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 13ms TBT · 356.9 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.9 MB heap

No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 10ms 8ms -15% z=-2.9
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 8 9 +6% z=-4.7
canvas-idle: task duration 514ms 446ms -13% z=1.7
canvas-idle: script duration 26ms 18ms -31% z=-3.4
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 65.3 MB 65.7 MB +0%
canvas-idle: DOM nodes -264 -263 -1% z=-223.5
canvas-idle: event listeners -131 -131 +0% z=-30.1
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-1.5
canvas-mouse-sweep: p95 frame time 17ms 17ms -0%
canvas-mouse-sweep: layout duration 4ms 3ms -11% z=-1.8
canvas-mouse-sweep: style recalc duration 43ms 34ms -20% z=-2.6
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 75 75 -1% z=-1.8
canvas-mouse-sweep: task duration 894ms 796ms -11% z=-1.2
canvas-mouse-sweep: script duration 139ms 128ms -8% z=-1.2
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 60.9 MB 47.0 MB -23%
canvas-mouse-sweep: DOM nodes -266 -262 -2% z=-125.4
canvas-mouse-sweep: event listeners -131 -133 +2% z=-33.9
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +1%
canvas-zoom-sweep: layout duration 1ms 1ms -18% z=-0.4
canvas-zoom-sweep: style recalc duration 20ms 16ms -17% z=-1.8
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 32 -2% z=0.5
canvas-zoom-sweep: task duration 381ms 362ms -5% z=1.5
canvas-zoom-sweep: script duration 26ms 21ms -20% z=-2.1
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 68.5 MB 42.4 MB -38%
canvas-zoom-sweep: DOM nodes 77 -212 -375% z=-368.0
canvas-zoom-sweep: event listeners 19 -120 -732% z=-27.7
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.6
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 8ms +5% z=-2.7
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 10 11 +5% z=-5.2
dom-widget-clipping: task duration 384ms 337ms -12% z=-1.7
dom-widget-clipping: script duration 69ms 59ms -15% z=-2.7
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 60.8 MB 57.9 MB -5%
dom-widget-clipping: DOM nodes 16 17 +6% z=-3.6
dom-widget-clipping: event listeners 0 0 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-1.0
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 10ms 8ms -16% z=-3.9
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 9 +0% z=-8.3
large-graph-idle: task duration 666ms 548ms -18% z=0.1
large-graph-idle: script duration 110ms 91ms -17% z=-1.1
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 69.3 MB 83.8 MB +21%
large-graph-idle: DOM nodes -250 -262 +5% z=-317.2
large-graph-idle: event listeners -127 -129 +2% z=-25.4
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 18ms 19ms +4% z=1.9
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-1.7
large-graph-pan: task duration 1285ms 1070ms -17% z=-0.3
large-graph-pan: script duration 441ms 400ms -9% z=-0.4
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 102.1 MB 69.5 MB -32%
large-graph-pan: DOM nodes -264 -265 +0% z=-172.1
large-graph-pan: event listeners -127 -128 +1% z=-160.5
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 8ms 7ms -11%
large-graph-zoom: style recalc duration 20ms 20ms -3%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 66 +2%
large-graph-zoom: task duration 1576ms 1371ms -13%
large-graph-zoom: script duration 556ms 483ms -13%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 108.1 MB 98.1 MB -9%
large-graph-zoom: DOM nodes -269 -264 -2%
large-graph-zoom: event listeners -125 -125 +0%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms -1%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 8ms -2% z=-1.5
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 9 +6% z=-1.6
minimap-idle: task duration 698ms 617ms -12% z=1.9
minimap-idle: script duration 112ms 102ms -9% z=0.4
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 95.8 MB 98.8 MB +3%
minimap-idle: DOM nodes -264 -262 -1% z=-205.6
minimap-idle: event listeners -129 -128 -1% z=-200.8
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.9
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 12ms 10ms -18% z=-3.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 45 46 +1% z=-4.2
subgraph-dom-widget-clipping: task duration 398ms 349ms -12% z=-1.6
subgraph-dom-widget-clipping: script duration 125ms 118ms -5% z=-1.6
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 55.4 MB 58.0 MB +5%
subgraph-dom-widget-clipping: DOM nodes 16 17 +6% z=-4.6
subgraph-dom-widget-clipping: event listeners 6 7 +17% z=-1.6
subgraph-idle: avg frame time 17ms 17ms +0% z=-0.7
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 10ms 9ms -16% z=-2.3
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 11 +5% z=-0.6
subgraph-idle: task duration 501ms 344ms -31% z=-0.8
subgraph-idle: script duration 22ms 17ms -21% z=-1.2
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 65.4 MB 62.7 MB -4%
subgraph-idle: DOM nodes -261 21 -108% z=-0.9
subgraph-idle: event listeners -131 4 -103% 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 -11% z=-1.4
subgraph-mouse-sweep: style recalc duration 42ms 36ms -16% z=-2.1
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 75 +0% z=-2.7
subgraph-mouse-sweep: task duration 808ms 725ms -10% z=-0.6
subgraph-mouse-sweep: script duration 102ms 92ms -9% z=-1.3
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 60.6 MB 57.7 MB -5%
subgraph-mouse-sweep: DOM nodes -262 -262 +0% z=-147.2
subgraph-mouse-sweep: event listeners -131 -131 +0% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 13ms 14ms +7%
subgraph-transition-enter: style recalc duration 29ms 28ms -4%
subgraph-transition-enter: layout count 4 5 +25%
subgraph-transition-enter: style recalc count 16 16 +0%
subgraph-transition-enter: task duration 893ms 879ms -2%
subgraph-transition-enter: script duration 45ms 28ms -36%
subgraph-transition-enter: TBT 188ms 147ms -22%
subgraph-transition-enter: heap used 91.2 MB 108.7 MB +19%
subgraph-transition-enter: DOM nodes 13433 12631 -6%
subgraph-transition-enter: event listeners 2529 1641 -35%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 56ms 51ms -9%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 251 +0%
viewport-pan-sweep: task duration 4339ms 3935ms -9%
viewport-pan-sweep: script duration 1397ms 1262ms -10%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 69.0 MB 136.6 MB +98%
viewport-pan-sweep: DOM nodes -263 -262 -1%
viewport-pan-sweep: event listeners -113 -126 +12%
vue-large-graph-idle: avg frame time 17ms 17ms -0%
vue-large-graph-idle: p95 frame time 17ms 17ms +1%
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 15982ms 13473ms -16%
vue-large-graph-idle: script duration 732ms 652ms -11%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 277.9 MB 217.1 MB -22%
vue-large-graph-idle: DOM nodes -8329 -8330 +0%
vue-large-graph-idle: event listeners -16492 -16475 -0%
vue-large-graph-pan: avg frame time 18ms 17ms -3%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 22ms 18ms -17%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 113 108 -4%
vue-large-graph-pan: task duration 17532ms 17191ms -2%
vue-large-graph-pan: script duration 1115ms 1052ms -6%
vue-large-graph-pan: TBT 21ms 13ms -40%
vue-large-graph-pan: heap used 246.4 MB 356.9 MB +45%
vue-large-graph-pan: DOM nodes -8329 -5818 -30%
vue-large-graph-pan: event listeners -16486 -16483 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 1ms +7% z=-0.3
workflow-execution: style recalc duration 29ms 21ms -28% z=-1.4
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 15 15 -3% z=-1.6
workflow-execution: task duration 139ms 109ms -22% z=-1.3
workflow-execution: script duration 27ms 22ms -19% z=-2.4
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 52.6 MB 51.9 MB -1%
workflow-execution: DOM nodes 155 158 +2% z=-0.4
workflow-execution: event listeners 69 53 -23% z=0.3
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-05-11T16:02:44.222Z",
  "gitSha": "934f5d12dfde9e41301c65c75537d6113679848a",
  "branch": "pysssss/fix-export-cancel-error-toast",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2100.771000000009,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 8.216999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 466.63499999999993,
      "heapDeltaBytes": 20036648,
      "heapUsedBytes": 68969396,
      "domNodes": -264,
      "jsHeapTotalBytes": 17952768,
      "scriptDurationMs": 14.621999999999996,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-idle",
      "durationMs": 2037.684000000013,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.224000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 425.236,
      "heapDeltaBytes": 498872,
      "heapUsedBytes": 68757080,
      "domNodes": -261,
      "jsHeapTotalBytes": 21979136,
      "scriptDurationMs": 20.927,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1844.8549999999955,
      "styleRecalcs": 73,
      "styleRecalcDurationMs": 35.019999999999996,
      "layouts": 12,
      "layoutDurationMs": 3.257,
      "taskDurationMs": 819.2170000000001,
      "heapDeltaBytes": 4159924,
      "heapUsedBytes": 53996064,
      "domNodes": -259,
      "jsHeapTotalBytes": 21979136,
      "scriptDurationMs": 130.42999999999998,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1817.9959999999937,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 33.906,
      "layouts": 12,
      "layoutDurationMs": 3.2639999999999993,
      "taskDurationMs": 773.3939999999999,
      "heapDeltaBytes": -4304944,
      "heapUsedBytes": 44512744,
      "domNodes": -265,
      "jsHeapTotalBytes": 16379904,
      "scriptDurationMs": 125.20399999999998,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1737.7629999999726,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.082,
      "layouts": 6,
      "layoutDurationMs": 0.699,
      "taskDurationMs": 356.01200000000006,
      "heapDeltaBytes": -4719116,
      "heapUsedBytes": 44551644,
      "domNodes": -215,
      "jsHeapTotalBytes": 19787776,
      "scriptDurationMs": 18.049999999999997,
      "eventListeners": -120,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1738.3439999999837,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 16.659,
      "layouts": 6,
      "layoutDurationMs": 0.5500000000000002,
      "taskDurationMs": 367.01900000000006,
      "heapDeltaBytes": -24006976,
      "heapUsedBytes": 44335220,
      "domNodes": -209,
      "jsHeapTotalBytes": 22241280,
      "scriptDurationMs": 23.551000000000002,
      "eventListeners": -120,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 554.6170000000075,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.927999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 328.86800000000005,
      "heapDeltaBytes": 9479848,
      "heapUsedBytes": 57981676,
      "domNodes": 16,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 59.626,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 552.4350000000595,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.523000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 345.99100000000004,
      "heapDeltaBytes": -4762040,
      "heapUsedBytes": 63525360,
      "domNodes": 18,
      "jsHeapTotalBytes": 22282240,
      "scriptDurationMs": 58.341,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2025.5849999999782,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.309000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 564.5169999999999,
      "heapDeltaBytes": 37727240,
      "heapUsedBytes": 97790060,
      "domNodes": -264,
      "jsHeapTotalBytes": 25776128,
      "scriptDurationMs": 88.713,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2018.2929999999715,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.073,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 532.225,
      "heapDeltaBytes": 21761532,
      "heapUsedBytes": 77907224,
      "domNodes": -260,
      "jsHeapTotalBytes": 4747264,
      "scriptDurationMs": 93.179,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2126.3679999999567,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 17.169999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1094.3480000000002,
      "heapDeltaBytes": 25657172,
      "heapUsedBytes": 85269112,
      "domNodes": -265,
      "jsHeapTotalBytes": 6262784,
      "scriptDurationMs": 416.499,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2122.4090000000615,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 20.402,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1046.605,
      "heapDeltaBytes": 1145976,
      "heapUsedBytes": 60539512,
      "domNodes": -265,
      "jsHeapTotalBytes": 1282048,
      "scriptDurationMs": 384.277,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3168.7409999999545,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 21.238000000000003,
      "layouts": 60,
      "layoutDurationMs": 7.065,
      "taskDurationMs": 1393.164,
      "heapDeltaBytes": 35936840,
      "heapUsedBytes": 97788468,
      "domNodes": -262,
      "jsHeapTotalBytes": 36990976,
      "scriptDurationMs": 486.81600000000003,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3217.5249999999096,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 18.307,
      "layouts": 60,
      "layoutDurationMs": 6.959,
      "taskDurationMs": 1348.039,
      "heapDeltaBytes": 46535944,
      "heapUsedBytes": 108031688,
      "domNodes": -265,
      "jsHeapTotalBytes": 38039552,
      "scriptDurationMs": 479.6259999999999,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2062.112999999954,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.168000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 585.7229999999998,
      "heapDeltaBytes": 39576804,
      "heapUsedBytes": 100973652,
      "domNodes": -266,
      "jsHeapTotalBytes": 33058816,
      "scriptDurationMs": 92.086,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2070.3099999999495,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.439,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 647.3500000000001,
      "heapDeltaBytes": 44615760,
      "heapUsedBytes": 106168848,
      "domNodes": -258,
      "jsHeapTotalBytes": 32272384,
      "scriptDurationMs": 111.843,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 522.2449999999981,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 9.956999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 348.818,
      "heapDeltaBytes": 8586680,
      "heapUsedBytes": 57792568,
      "domNodes": 18,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 118.419,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 534.5340000000078,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.449,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 348.93700000000007,
      "heapDeltaBytes": 14206076,
      "heapUsedBytes": 63748980,
      "domNodes": 16,
      "jsHeapTotalBytes": 17825792,
      "scriptDurationMs": 118.41999999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2005.6379999999763,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.402999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 343.731,
      "heapDeltaBytes": 1898228,
      "heapUsedBytes": 67849032,
      "domNodes": 20,
      "jsHeapTotalBytes": 19755008,
      "scriptDurationMs": 17.035999999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2004.4490000000224,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.771,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 343.653,
      "heapDeltaBytes": 796500,
      "heapUsedBytes": 63668660,
      "domNodes": 21,
      "jsHeapTotalBytes": 20803584,
      "scriptDurationMs": 16.935,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1758.438999999953,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 37.06,
      "layouts": 16,
      "layoutDurationMs": 4.013,
      "taskDurationMs": 719.76,
      "heapDeltaBytes": 10678696,
      "heapUsedBytes": 59507580,
      "domNodes": -259,
      "jsHeapTotalBytes": 23457792,
      "scriptDurationMs": 94.46799999999999,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1733.6160000000973,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 33.942,
      "layouts": 16,
      "layoutDurationMs": 4.497,
      "taskDurationMs": 729.988,
      "heapDeltaBytes": 11946164,
      "heapUsedBytes": 61395280,
      "domNodes": -265,
      "jsHeapTotalBytes": 20836352,
      "scriptDurationMs": 90.422,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1073.7669999999753,
      "styleRecalcs": 16,
      "styleRecalcDurationMs": 28.122,
      "layouts": 5,
      "layoutDurationMs": 13.530000000000001,
      "taskDurationMs": 878.9359999999999,
      "heapDeltaBytes": -37178400,
      "heapUsedBytes": 114031236,
      "domNodes": 12631,
      "jsHeapTotalBytes": -21565440,
      "scriptDurationMs": 28.428000000000008,
      "eventListeners": 1641,
      "totalBlockingTimeMs": 147,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8435.825999999906,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 51.43000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3971.958,
      "heapDeltaBytes": 85277208,
      "heapUsedBytes": 142772724,
      "domNodes": -260,
      "jsHeapTotalBytes": 75993088,
      "scriptDurationMs": 1270.636,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8363.951999999927,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 50.787,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3898.322,
      "heapDeltaBytes": 83638864,
      "heapUsedBytes": 143761236,
      "domNodes": -263,
      "jsHeapTotalBytes": 63438848,
      "scriptDurationMs": 1253.869,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11933.396000000015,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11904.287,
      "heapDeltaBytes": -43993960,
      "heapUsedBytes": 172233680,
      "domNodes": -8331,
      "jsHeapTotalBytes": 27062272,
      "scriptDurationMs": 611.2789999999999,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 15073.127999999997,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15042.595000000003,
      "heapDeltaBytes": 38609104,
      "heapUsedBytes": 283154792,
      "domNodes": -8329,
      "jsHeapTotalBytes": 26013696,
      "scriptDurationMs": 692.423,
      "eventListeners": -16486,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 17437.025000000063,
      "styleRecalcs": 112,
      "styleRecalcDurationMs": 18.43100000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17391.343,
      "heapDeltaBytes": 213482144,
      "heapUsedBytes": 456935484,
      "domNodes": -3306,
      "jsHeapTotalBytes": 210210816,
      "scriptDurationMs": 1040.753,
      "eventListeners": -16476,
      "totalBlockingTimeMs": 25,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 17015.59599999996,
      "styleRecalcs": 104,
      "styleRecalcDurationMs": 17.774999999999984,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16991.543,
      "heapDeltaBytes": 26314784,
      "heapUsedBytes": 291510908,
      "domNodes": -8329,
      "jsHeapTotalBytes": 40169472,
      "scriptDurationMs": 1062.301,
      "eventListeners": -16490,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 448.48000000001775,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 20.32,
      "layouts": 5,
      "layoutDurationMs": 1.3619999999999997,
      "taskDurationMs": 110.816,
      "heapDeltaBytes": 5284732,
      "heapUsedBytes": 55144724,
      "domNodes": 166,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 22.289,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 136.9480000000749,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 21.871000000000002,
      "layouts": 5,
      "layoutDurationMs": 1.6350000000000002,
      "taskDurationMs": 106.50200000000001,
      "heapDeltaBytes": 3418680,
      "heapUsedBytes": 53672904,
      "domNodes": 150,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 21.484,
      "eventListeners": 37,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@codecov
Copy link
Copy Markdown

codecov Bot commented May 11, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@             Coverage Diff             @@
##             main   #12134       +/-   ##
===========================================
- Coverage   73.54%   59.12%   -14.43%     
===========================================
  Files        1516     1407      -109     
  Lines       87789    71709    -16080     
  Branches    23637    19892     -3745     
===========================================
- Hits        64567    42398    -22169     
- Misses      22391    28834     +6443     
+ Partials      831      477      -354     
Flag Coverage Δ
e2e ?
unit 59.12% <100.00%> (+0.06%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
...latform/assets/composables/useMediaAssetActions.ts 76.48% <100.00%> (+14.28%) ⬆️
...m/workflow/core/services/workflowActionsService.ts 65.62% <100.00%> (+17.79%) ⬆️

... and 997 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@pythongosssss pythongosssss marked this pull request as ready for review May 11, 2026 16:57
@pythongosssss pythongosssss requested a review from a team May 11, 2026 16:57
@dosubot dosubot Bot added the size:S This PR changes 10-29 lines, ignoring generated files. label May 11, 2026
Copy link
Copy Markdown
Collaborator

@dante01yoon dante01yoon left a comment

Choose a reason for hiding this comment

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

Targeted fix with good unit + e2e coverage. The new cancelled flag on exportWorkflowAction is the cleanest way to distinguish a user-cancelled prompt from a real failure, and the bulk path properly skips counting cancellations as failures.

One non-blocking thought left inline on exportMultipleWorkflows.

}
}

// All cancelled
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

suggestion (non-blocking): If a user selects N assets with Comfy.PromptFilename enabled and cancels the first prompt, the loop still walks every remaining asset, popping a fresh prompt each time. Counting cancellations as a soft stop here (e.g. break on result.cancelled) would match user intent better — but it's outside the scope of this fix and the current behavior is at least consistent with what the loop did before the change. Worth a follow-up if QA flags it.

@pythongosssss pythongosssss added this pull request to the merge queue May 12, 2026
Merged via the queue into main with commit 6819152 May 12, 2026
58 checks passed
@pythongosssss pythongosssss deleted the pysssss/fix-export-cancel-error-toast branch May 12, 2026 09:15
dante01yoon added a commit that referenced this pull request May 12, 2026
After #12134, AssetsSidebarTab.open() waits for assets on the Generated
tab by default. This spec seeds only an input asset, so the Generated
tab is empty and the implicit wait times out. Switch to Imported and
let waitForAssets(1) gate there instead.
@pythongosssss pythongosssss added needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch core/1.44 Backport PRs for core 1.44 cloud/1.44 Backport PRs for cloud 1.44 labels May 22, 2026
@comfy-pr-bot
Copy link
Copy Markdown
Member

@pythongosssss Successfully backported to #12422

@comfy-pr-bot
Copy link
Copy Markdown
Member

@pythongosssss Successfully backported to #12423

@github-actions github-actions Bot removed the needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch label May 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cloud/1.44 Backport PRs for cloud 1.44 core/1.44 Backport PRs for core 1.44 size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants