Skip to content

DO NOT MERGE: canary for models metadata-only plus E2E stabilizers#13000

Draft
jaeone94 wants to merge 4 commits into
mainfrom
jaeone/do-not-merge-models-e2e-canary
Draft

DO NOT MERGE: canary for models metadata-only plus E2E stabilizers#13000
jaeone94 wants to merge 4 commits into
mainfrom
jaeone/do-not-merge-models-e2e-canary

Conversation

@jaeone94

Copy link
Copy Markdown
Collaborator

Draft canary PR to exercise CI with the models metadata-only change plus the two independent E2E stabilizer PRs together.

This is intentionally not intended for merge. It exists only to verify whether the combined test surface is green before marking the two E2E stabilizer PRs ready for review.

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

The PR simplifies the missing-model enrichment pipeline by converting enrichWithEmbeddedMetadata from an async function with injected callbacks and model-store loading into a synchronous function that purely merges embedded metadata from active graph nodes. useModelStore is removed from the pipeline, EmbeddedModelWithSource is deleted and replaced by MissingModelViewModel/MissingModelGroup types. Browser test fixes update locale testing, template route mocking, fixture wiring, and a test sync issue.

Changes

Missing Model Enrichment Simplification

Layer / File(s) Summary
Type contracts: remove EmbeddedModelWithSource, add view-model types
src/platform/missingModel/types.ts
Removes EmbeddedModelWithSource and introduces MissingModelViewModel (name + representative candidate + referencing nodes) and MissingModelGroup (directory grouping + isAssetSupported flag).
missingModelScan: synchronous enrichWithEmbeddedMetadata rewrite
src/platform/missingModel/missingModelScan.ts
Adds isInactiveMode helper for NEVER/BYPASS nodes, uses it in scanAllModelCandidates, and rewrites enrichWithEmbeddedMetadata to be synchronous: collects embedded models only from active node/ancestor paths, deduplicates by (name, directory), and applies directory-aware candidate enrichment without async installed checks.
missingModelPipeline: drop useModelStore and call synchronously
src/platform/missingModel/missingModelPipeline.ts
Removes useModelStore import and changes enrichedAll from an awaited call with folder-loading/async callbacks to a direct synchronous enrichWithEmbeddedMetadata(candidates, graphData) call.
missingModelScan tests: full rewrite for sync API
src/platform/missingModel/missingModelScan.test.ts
Converts all enrichWithEmbeddedMetadata calls from async/callback style to synchronous, removes subgraph fixture imports, adds immutability coverage, rewrites bypass/muted/ancestor-subgraph enrichment tests, and updates OSS/non-Cloud and dialog-filtering expectations.
missingModelPipeline tests + deleted fixtures
src/platform/missingModel/missingModelPipeline.test.ts, src/platform/missingModel/__fixtures__/activeSubgraphUnmatchedModel.json, src/platform/missingModel/__fixtures__/bypassedSubgraphUnmatchedModel.json
Removes modelStore mock wiring and beforeEach stubs, updates all enrichWithEmbeddedMetadata expectations to the two-parameter signature, and deletes the now-unused subgraph fixture JSON files.

Browser Test Infrastructure Fixes

Layer / File(s) Summary
Template and cloud-assets fixture wiring
browser_tests/fixtures/helpers/TemplateHelper.ts, browser_tests/tests/templateFilteringCount.spec.ts
Adds a customTemplatesHandler route mock for **/api/workflow_templates returning an empty JSON object, and switches templateFilteringCount to use createCloudAssetsFixture([]) instead of comfyPageFixture.
nodeHelp locale test: replace runtime locale switch with initialSettings
browser_tests/tests/nodeHelp.spec.ts
Removes setLocaleAndWaitForWorkflowReload helper and WorkspaceStore import; replaces runtime locale switching with a test.describe block using test.use({ initialSettings: { 'Comfy.Locale': 'ja' } }).
errorsTab test sync fix and WorkflowHelper import path
browser_tests/tests/propertiesPanel/errorsTabMissingModels.spec.ts, browser_tests/fixtures/helpers/WorkflowHelper.ts
Uses FAKE_MODEL_NAME constant in the /object_info mock, removes the extra /experiment/models wait from refresh test coordination, and updates AppMode import path from @/composables/useAppMode to @/utils/appMode.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~50 minutes

Possibly related PRs

  • Comfy-Org/ComfyUI_frontend#11233: Modifies the same missingModelScan.ts candidate enrichment and activity/mode-gating logic that this PR rewrites.
  • Comfy-Org/ComfyUI_frontend#11661: Adds the refreshMissingModels flow that calls into the missing-model pipeline whose enrichWithEmbeddedMetadata call signature this PR changes.
  • Comfy-Org/ComfyUI_frontend#11751: Introduced the refresh-pipeline extraction in missingModelPipeline.ts that this PR further simplifies by removing useModelStore and the async enrichment path.

Suggested labels

size:L

Suggested reviewers

  • dante01yoon
  • DrJKL

🐇 The model store is gone, no more async wait,
The enrichment runs clean, synchronous and straight!
Inactive nodes muted — BYPASS and NEVER — stay quiet,
No callback spaghetti, the pipeline's on diet.
The rabbit hops fast through a simpler code gate! 🎉

🚥 Pre-merge checks | ✅ 5 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 10.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Description check ❓ Inconclusive The description explains the canary purpose but lacks key template sections (What, Breaking changes, Dependencies, and Review Focus) that would provide comprehensive PR documentation. Add a proper summary section and fill in the Changes section with What, Breaking, and Dependencies details to match the repository template.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the pull request as a canary for models metadata-only changes plus E2E stabilizers, accurately reflecting the PR's purpose.
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.
End-To-End Regression Coverage For Fixes ✅ Passed PR is a canary/verification PR without bug-fix language; does not trigger the regression test requirement that applies only to bug-fix PRs.
Adr Compliance For Entity/Litegraph Changes ✅ Passed No changes to src/lib/litegraph/, src/ecs/, or core graph entity files; check applies only to those paths.

✏️ 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 jaeone/do-not-merge-models-e2e-canary

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

github-actions Bot commented Jun 19, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 06/19/2026, 10:50:23 AM UTC

Links

🎭 Playwright: ✅ 1669 passed, 0 failed · 2 flaky

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

📦 Bundle: 7.45 MB gzip 🟢 -582 B

Details

Summary

  • Raw size: 31.3 MB baseline 31.3 MB — 🟢 -2.75 kB
  • Gzip: 7.45 MB baseline 7.45 MB — 🟢 -582 B
  • Brotli: 5.1 MB baseline 5.1 MB — 🟢 -290 B
  • Bundles: 280 current • 280 baseline • 126 added / 126 removed

Category Glance
Utilities & Hooks 🟢 -2.75 kB (3.32 MB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Other ⚪ 0 B (10.4 MB) · Graph Workspace ⚪ 0 B (1.25 MB) · Panels & Settings ⚪ 0 B (525 kB) · Data & Services ⚪ 0 B (266 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-B7scwkpQ.js (new) 46.7 kB 🔴 +46.7 kB 🔴 +13.7 kB 🔴 +11.9 kB
assets/index-BQDF3mft.js (removed) 46.7 kB 🟢 -46.7 kB 🟢 -13.7 kB 🟢 -11.8 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-Ckcy_HE9.js (new) 1.25 MB 🔴 +1.25 MB 🔴 +266 kB 🔴 +201 kB
assets/GraphView-CONKEBt9.js (removed) 1.25 MB 🟢 -1.25 MB 🟢 -266 kB 🟢 -200 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-B6BsnpYa.js (removed) 19.5 kB 🟢 -19.5 kB 🟢 -5.06 kB 🟢 -4.48 kB
assets/CloudSurveyView-m9sfVNQA.js (new) 19.5 kB 🔴 +19.5 kB 🔴 +5.06 kB 🔴 +4.49 kB
assets/CloudLoginView-B4X-RFcj.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.69 kB
assets/CloudLoginView-LgwJl0sv.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.06 kB 🔴 +2.69 kB
assets/CloudSignupView-CXeI5rXf.js (new) 9.7 kB 🔴 +9.7 kB 🔴 +2.71 kB 🔴 +2.38 kB
assets/CloudSignupView-jxcKMp6s.js (removed) 9.7 kB 🟢 -9.7 kB 🟢 -2.71 kB 🟢 -2.38 kB
assets/CloudLayoutView-Ce2vOI3l.js (removed) 9.36 kB 🟢 -9.36 kB 🟢 -2.34 kB 🟢 -2.03 kB
assets/CloudLayoutView-QG0LhA2k.js (new) 9.36 kB 🔴 +9.36 kB 🔴 +2.34 kB 🔴 +2.02 kB
assets/UserCheckView-4JbEeGhl.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserCheckView-DSetNSIj.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.92 kB
assets/UserSelectView-B-NR_bbQ.js (new) 6 kB 🔴 +6 kB 🔴 +2.14 kB 🔴 +1.88 kB
assets/UserSelectView-BaYPwU8b.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/CloudForgotPasswordView-C2xpHbtQ.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/CloudForgotPasswordView-CIA0UqV7.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/CloudAuthTimeoutView-CEEACQN-.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/CloudAuthTimeoutView-DH-z89YY.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/CloudSubscriptionRedirectView-BjLjyFBy.js (new) 4.3 kB 🔴 +4.3 kB 🔴 +1.57 kB 🔴 +1.39 kB
assets/CloudSubscriptionRedirectView-C2Efnw6H.js (removed) 4.3 kB 🟢 -4.3 kB 🟢 -1.57 kB 🟢 -1.38 kB

Status: 9 added / 9 removed / 3 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-BgVF1Gao.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.96 kB 🟢 -8.82 kB
assets/KeybindingPanel-CtGzRQtZ.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.96 kB 🔴 +8.82 kB
assets/SecretsPanel-B01a9es8.js (removed) 24.2 kB 🟢 -24.2 kB 🟢 -5.76 kB 🟢 -5.06 kB
assets/SecretsPanel-By6clhdk.js (new) 24.2 kB 🔴 +24.2 kB 🔴 +5.77 kB 🔴 +5.06 kB
assets/LegacyCreditsPanel-D8AoqeH9.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.52 kB 🟢 -4.84 kB
assets/LegacyCreditsPanel-dSRSSxW6.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.52 kB 🔴 +4.85 kB
assets/SubscriptionPanel-CSVVs9f7.js (new) 19.2 kB 🔴 +19.2 kB 🔴 +5.04 kB 🔴 +4.41 kB
assets/SubscriptionPanel-Dyl1TUnG.js (removed) 19.2 kB 🟢 -19.2 kB 🟢 -5.03 kB 🟢 -4.42 kB
assets/AboutPanel-CfFdBJoe.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.22 kB 🔴 +2.88 kB
assets/AboutPanel-Cw4L_-ZR.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.22 kB 🟢 -2.88 kB
assets/ExtensionPanel-B5iHncKU.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.49 kB 🔴 +2.2 kB
assets/ExtensionPanel-fqAb95La.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.49 kB 🟢 -2.2 kB
assets/ServerConfigPanel-Bb3gORQH.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.98 kB 🟢 -1.77 kB
assets/ServerConfigPanel-YdpwVxgY.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.97 kB 🔴 +1.76 kB
assets/UserPanel-Cep1OGfK.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/UserPanel-DGQMKFnh.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/refreshRemoteConfig-6CDSMWCs.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.06 kB 🟢 -941 B
assets/refreshRemoteConfig-BEi_g2Kv.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.06 kB 🔴 +939 B
assets/cloudRemoteConfig-CeyjPMps.js (removed) 990 B 🟢 -990 B 🟢 -540 B 🟢 -462 B
assets/cloudRemoteConfig-NV2ImR0_.js (new) 990 B 🔴 +990 B 🔴 +542 B 🔴 +453 B
assets/refreshRemoteConfig-CZLWAoiL.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +78 B
assets/refreshRemoteConfig-NXjZNmzr.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -86 B

Status: 11 added / 11 removed / 15 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-CVYBWbWy.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/auth-DbiTfucH.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.3 kB 🔴 +1.14 kB
assets/usePostAuthRedirect-DTMEA_gJ.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.28 kB 🔴 +1.11 kB
assets/usePostAuthRedirect-WWWgOkIA.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.28 kB 🟢 -1.11 kB
assets/SignUpForm-B-iT1czI.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-Cr1QmFCZ.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-B8KROYgn.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +878 B 🔴 +766 B
assets/UpdatePasswordContent-xGRNOtGW.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -878 B 🟢 -768 B
assets/authStore-C_drg8q3.js (new) 130 B 🔴 +130 B 🔴 +109 B 🔴 +108 B
assets/authStore-CS4MOmOF.js (removed) 130 B 🟢 -130 B 🟢 -109 B 🟢 -107 B
assets/auth-3lSCfpxj.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -83 B
assets/auth-fP8_s7Vb.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +79 B

Status: 6 added / 6 removed / 3 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-BPxhqZsF.js (new) 86 kB 🔴 +86 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-tL_8hxd3.js (removed) 86 kB 🟢 -86 kB 🟢 -18.6 kB 🟢 -15.8 kB
assets/useShareDialog-DLWwPbJw.js (removed) 23.4 kB 🟢 -23.4 kB 🟢 -5.54 kB 🟢 -4.93 kB
assets/useShareDialog-DyPsOtQg.js (new) 23.4 kB 🔴 +23.4 kB 🔴 +5.54 kB 🔴 +4.92 kB
assets/ComfyHubPublishDialog-BbmP1OT3.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +91 B
assets/ComfyHubPublishDialog-CN-zFda2.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/useSubscriptionDialog-8gaQavl3.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -90 B
assets/useSubscriptionDialog-mvgHwhBY.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +88 B

Status: 4 added / 4 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-C2VavhWI.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.82 kB 🔴 +3.42 kB
assets/ComfyQueueButton-EbhUgBw8.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.83 kB 🟢 -3.42 kB
assets/useTerminalTabs-chx1zcCn.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.84 kB 🔴 +3.38 kB
assets/useTerminalTabs-Qr0JcbYL.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.84 kB 🟢 -3.39 kB
assets/SubscribeButton-2I_N11md.js (removed) 2.44 kB 🟢 -2.44 kB 🟢 -1.05 kB 🟢 -946 B
assets/SubscribeButton-BLsNILvs.js (new) 2.44 kB 🔴 +2.44 kB 🔴 +1.05 kB 🔴 +949 B
assets/cloudFeedbackTopbarButton-C9kBJB-I.js (removed) 829 B 🟢 -829 B 🟢 -497 B 🟢 -454 B
assets/cloudFeedbackTopbarButton-Cc6_piSZ.js (new) 829 B 🔴 +829 B 🔴 +497 B 🔴 +451 B
assets/ComfyQueueButton--U9J3v5k.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B
assets/ComfyQueueButton-Cc8Z7zP3.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -91 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 266 kB (baseline 266 kB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-CsiZxo7A.js (new) 125 kB 🔴 +125 kB 🔴 +27.7 kB 🔴 +23.4 kB
assets/load3dService-D4yX-XH6.js (removed) 125 kB 🟢 -125 kB 🟢 -27.7 kB 🟢 -23.4 kB
assets/api-B3EWUjmt.js (new) 83.9 kB 🔴 +83.9 kB 🔴 +22.5 kB 🔴 +19.4 kB
assets/api-BbCCrtWI.js (removed) 83.9 kB 🟢 -83.9 kB 🟢 -22.5 kB 🟢 -19.4 kB
assets/workflowShareService-DooVKjyP.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/workflowShareService-DvHGvRiO.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.91 kB 🔴 +4.36 kB
assets/keybindingService-C7shbn0L.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/keybindingService-DK_hkQqk.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.22 kB
assets/releaseStore-DVMl0PI0.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/releaseStore-DZDM4taq.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.33 kB 🔴 +2.04 kB
assets/extensionStore-CDDignD7.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/extensionStore-Dlupu7uj.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/userStore-BlKoGr20.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +931 B 🔴 +824 B
assets/userStore-g9-HfZ6u.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -829 B
assets/audioService-_LgX7eSo.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +862 B 🔴 +749 B
assets/audioService-9nB47N31.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -864 B 🟢 -748 B
assets/dialogService-C74G51dd.js (new) 100 B 🔴 +100 B 🔴 +99 B 🔴 +95 B
assets/dialogService-DJyZDAxr.js (removed) 100 B 🟢 -100 B 🟢 -99 B 🟢 -93 B
assets/settingStore-B3gvl4lz.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +101 B
assets/settingStore-DHaD5PLt.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -92 B
assets/assetsStore-CMuLoNyJ.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +93 B
assets/assetsStore-DgdvT4DW.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -88 B
assets/releaseStore-CtGNJSKs.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -87 B
assets/releaseStore-LlhqmHp3.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +82 B
assets/api-CzWByj24.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B
assets/api-DS5SYt1Y.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B

Status: 13 added / 13 removed / 3 unchanged

Utilities & Hooks — 3.32 MB (baseline 3.32 MB) • 🟢 -2.75 kB

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-CdOzvHE_.js (removed) 2.97 MB 🟢 -2.97 MB 🟢 -686 kB 🟢 -517 kB
assets/promotionUtils-Dna9YM85.js (new) 2.97 MB 🔴 +2.97 MB 🔴 +685 kB 🔴 +517 kB
assets/useConflictDetection-B-PFro3p.js (new) 233 kB 🔴 +233 kB 🔴 +52 kB 🔴 +42.3 kB
assets/useConflictDetection-Bym2wMQz.js (removed) 233 kB 🟢 -233 kB 🟢 -52 kB 🟢 -42.4 kB
assets/useLoad3d-B33m1pUD.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.76 kB 🟢 -5.1 kB
assets/useLoad3d-ErbC6t5Y.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.76 kB 🔴 +5.1 kB
assets/useLoad3dViewer-Bv9aPGXY.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useLoad3dViewer-C9el2zZz.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.37 kB
assets/useFeatureFlags-Cg63iyJT.js (new) 5.37 kB 🔴 +5.37 kB 🔴 +1.65 kB 🔴 +1.41 kB
assets/useFeatureFlags-skQegh-m.js (removed) 5.37 kB 🟢 -5.37 kB 🟢 -1.65 kB 🟢 -1.4 kB
assets/useSessionCookie-CyAFO0Kf.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.15 kB 🔴 +984 B
assets/useSessionCookie-r2bpP_Uy.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.14 kB 🟢 -976 B
assets/subscriptionCheckoutUtil-D2Eenyc0.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.19 kB
assets/subscriptionCheckoutUtil-DKrzdAq_.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.37 kB 🔴 +1.19 kB
assets/assetPreviewUtil-DgJqLYIs.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1.01 kB 🟢 -881 B
assets/assetPreviewUtil-DkM6VXJY.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1.01 kB 🔴 +884 B
assets/useUpstreamValue-C1yuH0Fk.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -797 B 🟢 -701 B
assets/useUpstreamValue-CiobTiu5.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +793 B 🔴 +709 B
assets/useWorkspaceSwitch-CEP0x59f.js (new) 748 B 🔴 +748 B 🔴 +384 B 🔴 +338 B
assets/useWorkspaceSwitch-DQ765L6B.js (removed) 748 B 🟢 -748 B 🟢 -387 B 🟢 -339 B
assets/useLoad3d-BeV8VZ_N.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -147 B
assets/useLoad3d-PKJsOfqn.js (new) 311 B 🔴 +311 B 🔴 +164 B 🔴 +148 B
assets/useSessionCookie-B4VEfGG_.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -80 B
assets/useSessionCookie-WHnMiLW7.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +87 B
assets/useLoad3dViewer-Bk_bbl2q.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +85 B
assets/useLoad3dViewer-CBDwFacu.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -83 B
assets/useCurrentUser-B3av4rOP.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +83 B
assets/useCurrentUser-BCnnDr1L.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -84 B

Status: 14 added / 14 removed / 16 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-DPEB8skn.js (removed) 118 kB 🟢 -118 kB 🟢 -30.5 kB 🟢 -25.8 kB
assets/core-W0cGddHF.js (new) 118 kB 🔴 +118 kB 🔴 +30.5 kB 🔴 +25.8 kB
assets/WidgetSelect-DHInqWiN.js (new) 82.6 kB 🔴 +82.6 kB 🔴 +18.1 kB 🔴 +15.7 kB
assets/WidgetSelect-Td3xziTk.js (removed) 82.6 kB 🟢 -82.6 kB 🟢 -18.1 kB 🟢 -15.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-CdxupNE4.js (removed) 47.8 kB 🟢 -47.8 kB 🟢 -9.08 kB 🟢 -7.84 kB
assets/SubscriptionRequiredDialogContentWorkspace-xic_TzJV.js (new) 47.8 kB 🔴 +47.8 kB 🔴 +9.08 kB 🔴 +7.84 kB
assets/Load3DControls-D3QQcTKo.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.57 kB 🔴 +6.61 kB
assets/Load3DControls-DCCULXFH.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.57 kB 🟢 -6.62 kB
assets/WorkspacePanelContent-Behpepbp.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -6.96 kB 🟢 -6.17 kB
assets/WorkspacePanelContent-DTXmFF0k.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +6.96 kB 🔴 +6.16 kB
assets/WidgetPainter-BMxAjbWv.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.86 kB 🔴 +6.98 kB
assets/WidgetPainter-BY-z4Wa1.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -6.97 kB
assets/Load3dViewerContent-CFSCY1yC.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.48 kB
assets/Load3dViewerContent-SbI8DjRu.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.3 kB 🟢 -5.47 kB
assets/SubscriptionRequiredDialogContent-BO-U417T.js (removed) 26.6 kB 🟢 -26.6 kB 🟢 -6.56 kB 🟢 -5.79 kB
assets/SubscriptionRequiredDialogContent-CwT2505W.js (new) 26.6 kB 🔴 +26.6 kB 🔴 +6.56 kB 🔴 +5.79 kB
assets/WidgetImageCrop-BHh_7M0u.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.74 kB 🔴 +5.04 kB
assets/WidgetImageCrop-Oi0n24zn.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.05 kB
assets/SubscriptionPanelContentWorkspace-0KoQiMjN.js (new) 22.1 kB 🔴 +22.1 kB 🔴 +5.16 kB 🔴 +4.55 kB
assets/SubscriptionPanelContentWorkspace-BDVtrL7M.js (removed) 22.1 kB 🟢 -22.1 kB 🟢 -5.16 kB 🟢 -4.55 kB
assets/load3d-Dq5hTKOx.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +5.18 kB 🔴 +4.5 kB
assets/load3d-EgDGR1Sm.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -5.18 kB 🟢 -4.49 kB
assets/CurrentUserPopoverWorkspace-BKB1NCQq.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.68 kB 🔴 +4.18 kB
assets/CurrentUserPopoverWorkspace-GENqEhmb.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.68 kB 🟢 -4.18 kB
assets/SignInContent-B9Z1tLzg.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +5 kB 🔴 +4.37 kB
assets/SignInContent-C7csTbRc.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -4.99 kB 🟢 -4.36 kB
assets/Load3D-DMdUrhAu.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.51 kB 🔴 +3.94 kB
assets/Load3D-tgvgPJPT.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.52 kB 🟢 -3.93 kB
assets/WidgetInputNumber-BN8OtXP6.js (removed) 19 kB 🟢 -19 kB 🟢 -4.79 kB 🟢 -4.25 kB
assets/WidgetInputNumber-CuaXcffw.js (new) 19 kB 🔴 +19 kB 🔴 +4.79 kB 🔴 +4.25 kB
assets/WidgetRecordAudio-ByhOW51J.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.14 kB
assets/WidgetRecordAudio-D8H9zC7_.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRange-DWfm0E6t.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.17 kB 🔴 +3.73 kB
assets/WidgetRange-Dx44kgRq.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.72 kB
assets/WaveAudioPlayer-CTrRBrrC.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.48 kB 🟢 -3.05 kB
assets/WaveAudioPlayer-DAFDaOc1.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.48 kB 🔴 +3.05 kB
assets/WidgetCurve-D-8qOeC_.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.5 kB 🔴 +3.17 kB
assets/WidgetCurve-rkm_CGEb.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.5 kB 🟢 -3.17 kB
assets/TeamWorkspacesDialogContent-BXFpkVbg.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.01 kB 🟢 -2.68 kB
assets/TeamWorkspacesDialogContent-CA7MtpSm.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.01 kB 🔴 +2.68 kB
assets/Load3DConfiguration-Dwwh8kP_.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.66 kB 🔴 +2.35 kB
assets/Load3DConfiguration-qmLthN22.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.67 kB 🟢 -2.35 kB
assets/nodeTemplates-BAZ0dAJX.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.88 kB 🔴 +2.55 kB
assets/nodeTemplates-Dcs0o7Jc.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.88 kB 🟢 -2.54 kB
assets/onboardingCloudRoutes-Cj-yd2d1.js (removed) 8.2 kB 🟢 -8.2 kB 🟢 -2.54 kB 🟢 -2.19 kB
assets/onboardingCloudRoutes-CTQ644Pv.js (new) 8.2 kB 🔴 +8.2 kB 🔴 +2.54 kB 🔴 +2.19 kB
assets/NightlySurveyController-CnO__P3W.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.39 kB
assets/NightlySurveyController-DLz-Xbsc.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.4 kB
assets/InviteMemberDialogContent-CMgAGmIn.js (new) 7.03 kB 🔴 +7.03 kB 🔴 +2.14 kB 🔴 +1.85 kB
assets/InviteMemberDialogContent-JeuhDnsm.js (removed) 7.03 kB 🟢 -7.03 kB 🟢 -2.13 kB 🟢 -1.85 kB
assets/WidgetWithControl-CWzx10K1.js (removed) 6.3 kB 🟢 -6.3 kB 🟢 -2.53 kB 🟢 -2.27 kB
assets/WidgetWithControl-D_Fge06g.js (new) 6.3 kB 🔴 +6.3 kB 🔴 +2.54 kB 🔴 +2.25 kB
assets/load3dPreviewExtensions-D2DY12nh.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/load3dPreviewExtensions-QImHyhw4.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-BOaMC3En.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.59 kB
assets/CreateWorkspaceDialogContent-cTt1cbW1.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/missingModelDownload-BPG-P1ZK.js (new) 5.07 kB 🔴 +5.07 kB 🔴 +1.98 kB 🔴 +1.72 kB
assets/missingModelDownload-Dqao11EN.js (removed) 5.07 kB 🟢 -5.07 kB 🟢 -1.98 kB 🟢 -1.72 kB
assets/FreeTierDialogContent-BL4YZnLx.js (removed) 5.02 kB 🟢 -5.02 kB 🟢 -1.69 kB 🟢 -1.5 kB
assets/FreeTierDialogContent-Cv_XMkMC.js (new) 5.02 kB 🔴 +5.02 kB 🔴 +1.69 kB 🔴 +1.49 kB
assets/EditWorkspaceDialogContent-CSAxdth3.js (removed) 5 kB 🟢 -5 kB 🟢 -1.8 kB 🟢 -1.55 kB
assets/EditWorkspaceDialogContent-D9VE7iDY.js (new) 5 kB 🔴 +5 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/WidgetTextarea-BkVgv8h4.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.89 kB 🔴 +1.67 kB
assets/WidgetTextarea-ixRVNYlZ.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.89 kB 🟢 -1.67 kB
assets/saveMesh-CMupTuIu.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.55 kB 🔴 +1.36 kB
assets/saveMesh-gn_tcbx7.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.55 kB 🟢 -1.36 kB
assets/Preview3d-BjX7_hb_.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.23 kB
assets/Preview3d-NC8U9B3e.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.24 kB
assets/ValueControlPopover-DjeFcIDp.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.59 kB 🟢 -1.42 kB
assets/ValueControlPopover-T8nqtqN6.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.59 kB 🔴 +1.41 kB
assets/CancelSubscriptionDialogContent-CvqCwV39.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.66 kB 🔴 +1.44 kB
assets/CancelSubscriptionDialogContent-DnNiNN86.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/tierBenefits-BTV-gHgO.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.58 kB 🔴 +1.36 kB
assets/tierBenefits-W20jP76n.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/DeleteWorkspaceDialogContent-Ca22LTS1.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.26 kB
assets/DeleteWorkspaceDialogContent-DYir6tai.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.27 kB
assets/LeaveWorkspaceDialogContent-BJEdmu5p.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.42 kB 🔴 +1.22 kB
assets/LeaveWorkspaceDialogContent-DdPGrB3P.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.22 kB
assets/RemoveMemberDialogContent-B5-EwLtt.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.18 kB
assets/RemoveMemberDialogContent-B6n9QRTc.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.37 kB 🔴 +1.19 kB
assets/RevokeInviteDialogContent-BdeLWuFD.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.21 kB
assets/RevokeInviteDialogContent-BusXVjcl.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/InviteMemberUpsellDialogContent-D2szqaRw.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/InviteMemberUpsellDialogContent-DfJW1BP6.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.24 kB 🟢 -1.08 kB
assets/Media3DTop-Bst9mijz.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/Media3DTop-CgmwtO7C.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/GlobalToast-BSTxm8Zr.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.13 kB
assets/GlobalToast-DNGBR28s.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.13 kB
assets/load3dAdvanced-CiJ6te-7.js (new) 2.85 kB 🔴 +2.85 kB 🔴 +1.12 kB 🔴 +975 B
assets/load3dAdvanced-D1qHP2j7.js (removed) 2.85 kB 🟢 -2.85 kB 🟢 -1.12 kB 🟢 -972 B
assets/SubscribeToRun-Ct6b8Ian.js (removed) 2.53 kB 🟢 -2.53 kB 🟢 -1.1 kB 🟢 -973 B
assets/SubscribeToRun-vSNi038b.js (new) 2.53 kB 🔴 +2.53 kB 🔴 +1.1 kB 🔴 +973 B
assets/graphHasMissingNodes-c77Xxy4k.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -909 B 🟢 -790 B
assets/graphHasMissingNodes-DMGz_-j1.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +908 B 🔴 +794 B
assets/MediaAudioTop-BEFz0HFs.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +839 B 🔴 +694 B
assets/MediaAudioTop-CdcssY5V.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -836 B 🟢 -694 B
assets/CloudRunButtonWrapper-7th6LI0q.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -548 B 🟢 -519 B
assets/CloudRunButtonWrapper-DFIR3gt7.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +550 B 🔴 +528 B
assets/cloudSessionCookie-COxV6gD3.js (removed) 991 B 🟢 -991 B 🟢 -469 B 🟢 -417 B
assets/cloudSessionCookie-DP9rPPNl.js (new) 991 B 🔴 +991 B 🔴 +467 B 🔴 +414 B
assets/cloudBadges-CcCGfUCU.js (new) 973 B 🔴 +973 B 🔴 +549 B 🔴 +493 B
assets/cloudBadges-qg3pPXlw.js (removed) 973 B 🟢 -973 B 🟢 -552 B 🟢 -469 B
assets/cloudSubscription-BEjZvk_1.js (new) 820 B 🔴 +820 B 🔴 +455 B 🔴 +368 B
assets/cloudSubscription-CfoyBYd9.js (removed) 820 B 🟢 -820 B 🟢 -453 B 🟢 -363 B
assets/Load3DAdvanced-DX02OTpZ.js (removed) 813 B 🟢 -813 B 🟢 -456 B 🟢 -407 B
assets/Load3DAdvanced-ZFQNNXK1.js (new) 813 B 🔴 +813 B 🔴 +456 B 🔴 +409 B
assets/nightlyBadges-1m3I8ymO.js (new) 464 B 🔴 +464 B 🔴 +306 B 🔴 +254 B
assets/nightlyBadges-DUj7EEK9.js (removed) 464 B 🟢 -464 B 🟢 -306 B 🟢 -254 B
assets/missingModelDownload-Bf5VYaJc.js (new) 228 B 🔴 +228 B 🔴 +151 B 🔴 +133 B
assets/missingModelDownload-DiunU71W.js (removed) 228 B 🟢 -228 B 🟢 -148 B 🟢 -128 B
assets/SubscriptionPanelContentWorkspace-CqDz5rh0.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -92 B
assets/SubscriptionPanelContentWorkspace-wKfORQ0I.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +91 B
assets/Load3dViewerContent-CvNKWHlh.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -92 B
assets/Load3dViewerContent-Iz-4m56D.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +107 B
assets/Load3DAdvanced-CWn0AfFF.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +88 B
assets/Load3DAdvanced-K5jpvVcq.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -88 B
assets/WidgetLegacy-B7lRimin.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +94 B
assets/WidgetLegacy-BTvkXDCu.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -96 B
assets/workflowDraftStoreV2-Bpigl1i4.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -111 B
assets/workflowDraftStoreV2-DlgRj41z.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +117 B
assets/Load3D-B1Wl8k8r.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -79 B
assets/Load3D-C4T0ig7M.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +88 B
assets/changeTracker-BUm_K1rD.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +81 B
assets/changeTracker-Buy2eUwi.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -85 B

Status: 62 added / 62 removed / 89 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.7 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 48.8 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.5 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.4 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 79.0 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.6 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.0 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.1 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.4 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.9 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 166ms TBT · 76.1 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.6 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 161.3 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 22ms TBT · 162.0 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.6 MB heap

⚠️ 2 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
large-graph-pan: style recalc duration 18ms 19ms +5% ⚠️ z=2.2
workflow-execution: task duration 115ms 154ms +34% ⚠️ z=2.9
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=0.4
canvas-idle: p95 frame time 17ms 17ms -1%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 10ms 8ms -18% z=-3.1
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 11 10 -14% z=-2.9
canvas-idle: task duration 359ms 364ms +1% z=-1.0
canvas-idle: script duration 20ms 16ms -20% z=-4.3
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 53.8 MB 53.7 MB -0%
canvas-idle: DOM nodes 22 19 -14% z=-2.8
canvas-idle: event listeners 4 4 +0% z=-1.6
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 3ms 4ms +8% z=0.2
canvas-mouse-sweep: style recalc duration 35ms 39ms +10% z=-1.3
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 73 76 +3% z=-1.4
canvas-mouse-sweep: task duration 728ms 799ms +10% z=-1.1
canvas-mouse-sweep: script duration 122ms 123ms +1% z=-1.9
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 48.9 MB 48.8 MB -0%
canvas-mouse-sweep: DOM nodes 56 59 +4% z=-1.5
canvas-mouse-sweep: event listeners 4 5 +25% z=-0.8
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=1.4
canvas-zoom-sweep: p95 frame time 17ms 17ms +1%
canvas-zoom-sweep: layout duration 1ms 1ms +32% z=1.4
canvas-zoom-sweep: style recalc duration 15ms 16ms +5% z=-2.0
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +2% z=0.5
canvas-zoom-sweep: task duration 296ms 308ms +4% z=-0.8
canvas-zoom-sweep: script duration 18ms 18ms -0% z=-2.9
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 57.4 MB 57.3 MB -0%
canvas-zoom-sweep: DOM nodes 78 77 -2% z=-3.5
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 7ms 7ms -3% z=-3.6
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 11 +0% z=-4.2
dom-widget-clipping: task duration 326ms 335ms +3% z=-1.8
dom-widget-clipping: script duration 56ms 59ms +6% z=-2.8
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 62.6 MB 62.5 MB -0%
dom-widget-clipping: DOM nodes 18 18 +0% z=-2.9
dom-widget-clipping: event listeners 0 0 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 10ms 9ms -3% z=-2.7
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 11 10 -14% z=-6.7
large-graph-idle: task duration 481ms 484ms +1% z=-1.1
large-graph-idle: script duration 89ms 86ms -4% z=-1.6
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 59.3 MB 61.4 MB +3%
large-graph-idle: DOM nodes 22 19 -14% z=-6.3
large-graph-idle: event listeners 4 5 +25% z=-3.5
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.2
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 +5% ⚠️ z=2.2
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 +0% z=-0.9
large-graph-pan: task duration 1028ms 1047ms +2% z=-0.8
large-graph-pan: script duration 385ms 406ms +5% z=-0.1
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 79.2 MB 79.0 MB -0%
large-graph-pan: DOM nodes 20 17 -15% z=-1.2
large-graph-pan: event listeners 6 6 +0% z=1.3
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 +8%
large-graph-zoom: style recalc duration 18ms 19ms +4%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 66 +0%
large-graph-zoom: task duration 1214ms 1250ms +3%
large-graph-zoom: script duration 454ms 474ms +4%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 65.1 MB 67.6 MB +4%
large-graph-zoom: DOM nodes 14 14 +0%
large-graph-zoom: event listeners 8 8 +0%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms -0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 9ms +11% z=-1.2
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 10 +19% z=-0.1
minimap-idle: task duration 461ms 499ms +8% z=-0.6
minimap-idle: script duration 81ms 90ms +11% z=-0.8
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 61.0 MB 62.0 MB +2%
minimap-idle: DOM nodes 16 19 +19% z=-0.1
minimap-idle: event listeners 4 5 +25% z=0.6
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
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 11ms 11ms -1% z=-1.7
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 +0% z=-1.6
subgraph-dom-widget-clipping: task duration 348ms 375ms +8% z=-0.2
subgraph-dom-widget-clipping: script duration 118ms 121ms +3% z=-1.1
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 63.3 MB 56.1 MB -11%
subgraph-dom-widget-clipping: DOM nodes 20 -123 -713% z=-129.3
subgraph-dom-widget-clipping: event listeners 6 -96 -1692% z=-19.2
subgraph-idle: avg frame time 17ms 17ms +0% z=0.9
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 8ms -15% z=-3.4
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 -5% z=-2.1
subgraph-idle: task duration 341ms 357ms +5% z=-0.4
subgraph-idle: script duration 17ms 14ms -16% z=-2.3
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 53.6 MB 53.4 MB -0%
subgraph-idle: DOM nodes 20 19 -5% z=-1.9
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms -1%
subgraph-mouse-sweep: layout duration 4ms 4ms +9% z=-2.2
subgraph-mouse-sweep: style recalc duration 35ms 34ms -2% z=-2.5
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 77 76 -2% z=-2.4
subgraph-mouse-sweep: task duration 650ms 649ms -0% z=-1.7
subgraph-mouse-sweep: script duration 85ms 87ms +3% z=-2.0
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 45.7 MB 57.9 MB +27%
subgraph-mouse-sweep: DOM nodes 64 62 -4% z=-2.4
subgraph-mouse-sweep: event listeners 4 4 +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 14ms 14ms +2%
subgraph-transition-enter: style recalc duration 28ms 28ms -3%
subgraph-transition-enter: layout count 4 4 +0%
subgraph-transition-enter: style recalc count 16 15 -6%
subgraph-transition-enter: task duration 700ms 727ms +4%
subgraph-transition-enter: script duration 26ms 26ms -1%
subgraph-transition-enter: TBT 164ms 166ms +1%
subgraph-transition-enter: heap used 76.2 MB 76.1 MB -0%
subgraph-transition-enter: DOM nodes 13833 13833 +0%
subgraph-transition-enter: event listeners 2527 2527 +0%
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 52ms 54ms +4%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 251 +0%
viewport-pan-sweep: task duration 3502ms 3562ms +2%
viewport-pan-sweep: script duration 1174ms 1214ms +3%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 66.8 MB 72.6 MB +9%
viewport-pan-sweep: DOM nodes 22 -264 -1300%
viewport-pan-sweep: event listeners 20 -132 -758%
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 12228ms 12387ms +1%
vue-large-graph-idle: script duration 580ms 588ms +1%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 160.1 MB 161.3 MB +1%
vue-large-graph-idle: DOM nodes -3310 -3302 -0%
vue-large-graph-idle: event listeners -16473 -16473 -0%
vue-large-graph-pan: avg frame time 17ms 17ms +2%
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 16ms 18ms +10%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 65 70 +8%
vue-large-graph-pan: task duration 14005ms 14893ms +6%
vue-large-graph-pan: script duration 849ms 877ms +3%
vue-large-graph-pan: TBT 0ms 22ms
vue-large-graph-pan: heap used 153.4 MB 162.0 MB +6%
vue-large-graph-pan: DOM nodes -3308 -3303 -0%
vue-large-graph-pan: event listeners -16473 -16470 -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 -2% z=-1.4
workflow-execution: style recalc duration 22ms 26ms +21% z=0.8
workflow-execution: layout count 5 5 -10% z=-0.8
workflow-execution: style recalc count 18 21 +14% z=1.3
workflow-execution: task duration 115ms 154ms +34% ⚠️ z=2.9
workflow-execution: script duration 21ms 17ms -17% z=-4.0
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 61.9 MB 53.6 MB -13%
workflow-execution: DOM nodes 159 -14 -108% z=-24.5
workflow-execution: event listeners 69 -33 -147% z=-19.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-06-19T11:00:04.745Z",
  "gitSha": "cfe8a7eb4c5e516d1ba91ab753024264fb9c2be7",
  "branch": "jaeone/do-not-merge-models-e2e-canary",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2022.7780000000166,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.321,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 373.744,
      "heapDeltaBytes": -2466564,
      "heapUsedBytes": 56046628,
      "domNodes": 20,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 16.493000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2022.3999999999478,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.817000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 354.405,
      "heapDeltaBytes": -2249588,
      "heapUsedBytes": 56468296,
      "domNodes": 18,
      "jsHeapTotalBytes": 24379392,
      "scriptDurationMs": 14.846,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1922.1520000000396,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 39.256,
      "layouts": 12,
      "layoutDurationMs": 3.8320000000000003,
      "taskDurationMs": 809,
      "heapDeltaBytes": -7367336,
      "heapUsedBytes": 51074768,
      "domNodes": 59,
      "jsHeapTotalBytes": 26214400,
      "scriptDurationMs": 118.98599999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1775.1719999999978,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 37.909,
      "layouts": 12,
      "layoutDurationMs": 3.475,
      "taskDurationMs": 788.4480000000001,
      "heapDeltaBytes": -7059620,
      "heapUsedBytes": 51340828,
      "domNodes": 58,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 127.001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1729.916000000003,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.715,
      "layouts": 6,
      "layoutDurationMs": 0.738,
      "taskDurationMs": 311.52799999999996,
      "heapDeltaBytes": 1515564,
      "heapUsedBytes": 59956384,
      "domNodes": 77,
      "jsHeapTotalBytes": 26738688,
      "scriptDurationMs": 18.136000000000003,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1726.7289999999775,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 15.546999999999999,
      "layouts": 6,
      "layoutDurationMs": 0.678,
      "taskDurationMs": 304.26300000000003,
      "heapDeltaBytes": 1465596,
      "heapUsedBytes": 60106148,
      "domNodes": 76,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 18.647,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 566.4430000000493,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 6.793999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 327.096,
      "heapDeltaBytes": 6755384,
      "heapUsedBytes": 65288232,
      "domNodes": 18,
      "jsHeapTotalBytes": 17563648,
      "scriptDurationMs": 55.041,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 560.0400000000718,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.186999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 342.617,
      "heapDeltaBytes": 7285376,
      "heapUsedBytes": 65759240,
      "domNodes": 18,
      "jsHeapTotalBytes": 18874368,
      "scriptDurationMs": 62.71399999999999,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2036.5130000000136,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.598,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 496.358,
      "heapDeltaBytes": -9149064,
      "heapUsedBytes": 66605324,
      "domNodes": 20,
      "jsHeapTotalBytes": 10629120,
      "scriptDurationMs": 87.52600000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 1998.4929999999395,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.178999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 472.435,
      "heapDeltaBytes": -9617916,
      "heapUsedBytes": 62066856,
      "domNodes": 18,
      "jsHeapTotalBytes": 9580544,
      "scriptDurationMs": 83.52200000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2106.851000000006,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 18.935999999999996,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1048.055,
      "heapDeltaBytes": 10260040,
      "heapUsedBytes": 82840316,
      "domNodes": 18,
      "jsHeapTotalBytes": 11591680,
      "scriptDurationMs": 407.63100000000003,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2103.560000000016,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 19.226999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1046.889,
      "heapDeltaBytes": 10230080,
      "heapUsedBytes": 82880508,
      "domNodes": 16,
      "jsHeapTotalBytes": 10280960,
      "scriptDurationMs": 403.389,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3086.6829999999936,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 18.254999999999995,
      "layouts": 60,
      "layoutDurationMs": 7.378000000000001,
      "taskDurationMs": 1227.689,
      "heapDeltaBytes": 13742192,
      "heapUsedBytes": 68504232,
      "domNodes": 14,
      "jsHeapTotalBytes": 6029312,
      "scriptDurationMs": 473.50699999999995,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3111.772999999971,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 19.532999999999998,
      "layouts": 60,
      "layoutDurationMs": 7.550000000000001,
      "taskDurationMs": 1271.359,
      "heapDeltaBytes": 14366716,
      "heapUsedBytes": 73160216,
      "domNodes": 14,
      "jsHeapTotalBytes": 8126464,
      "scriptDurationMs": 474.00300000000004,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2032.1569999999838,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.727000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 498.29099999999994,
      "heapDeltaBytes": -10882304,
      "heapUsedBytes": 65750176,
      "domNodes": 20,
      "jsHeapTotalBytes": 7745536,
      "scriptDurationMs": 89.47099999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2028.7650000000212,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.392,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 500.059,
      "heapDeltaBytes": -9143864,
      "heapUsedBytes": 64270204,
      "domNodes": 18,
      "jsHeapTotalBytes": 7745536,
      "scriptDurationMs": 90.452,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 583.3410000000185,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 379.09700000000004,
      "heapDeltaBytes": -17638428,
      "heapUsedBytes": 50948200,
      "domNodes": -267,
      "jsHeapTotalBytes": 8826880,
      "scriptDurationMs": 120.364,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 592.2809999999572,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 12.153,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 370.736,
      "heapDeltaBytes": 7997776,
      "heapUsedBytes": 66764836,
      "domNodes": 22,
      "jsHeapTotalBytes": 19398656,
      "scriptDurationMs": 122.25800000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2006.1570000000302,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.764,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 378.913,
      "heapDeltaBytes": -2593612,
      "heapUsedBytes": 55992312,
      "domNodes": 18,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 15.883000000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1989.4329999999627,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.798000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 335.562,
      "heapDeltaBytes": -2607308,
      "heapUsedBytes": 55958252,
      "domNodes": 20,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 12.382,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1677.082999999982,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 34.692,
      "layouts": 16,
      "layoutDurationMs": 4.047000000000001,
      "taskDurationMs": 638.79,
      "heapDeltaBytes": 15410540,
      "heapUsedBytes": 73961512,
      "domNodes": 61,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 86.162,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1706.2570000000505,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 33.722,
      "layouts": 16,
      "layoutDurationMs": 3.9560000000000004,
      "taskDurationMs": 659.432,
      "heapDeltaBytes": -11117544,
      "heapUsedBytes": 47460756,
      "domNodes": 62,
      "jsHeapTotalBytes": 26214400,
      "scriptDurationMs": 88.82499999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 915.9469999999601,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 27.659000000000002,
      "layouts": 4,
      "layoutDurationMs": 14.426000000000002,
      "taskDurationMs": 726.725,
      "heapDeltaBytes": 4312848,
      "heapUsedBytes": 79794688,
      "domNodes": 13833,
      "jsHeapTotalBytes": 18087936,
      "scriptDurationMs": 26.119000000000003,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 166,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8148.506999999995,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 53.80700000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3538.25,
      "heapDeltaBytes": 17964576,
      "heapUsedBytes": 74299896,
      "domNodes": -265,
      "jsHeapTotalBytes": 9363456,
      "scriptDurationMs": 1210.6000000000001,
      "eventListeners": -118,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8168.407000000002,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 54.019,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3586.276,
      "heapDeltaBytes": 13373124,
      "heapUsedBytes": 77919616,
      "domNodes": -263,
      "jsHeapTotalBytes": 6250496,
      "scriptDurationMs": 1217.49,
      "eventListeners": -145,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12019.226000000002,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11999.727,
      "heapDeltaBytes": -31659968,
      "heapUsedBytes": 168644504,
      "domNodes": -3302,
      "jsHeapTotalBytes": 19107840,
      "scriptDurationMs": 586.951,
      "eventListeners": -16472,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12787.53699999993,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12773.485,
      "heapDeltaBytes": -41550576,
      "heapUsedBytes": 169639020,
      "domNodes": -3302,
      "jsHeapTotalBytes": 20942848,
      "scriptDurationMs": 589.6139999999999,
      "eventListeners": -16473,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14798.371999999972,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.641999999999992,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14775.66,
      "heapDeltaBytes": -32934076,
      "heapUsedBytes": 179750720,
      "domNodes": -3302,
      "jsHeapTotalBytes": 19546112,
      "scriptDurationMs": 888.1380000000001,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 44,
      "frameDurationMs": 17.776666666666763,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15032.725999999911,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.569000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15010.904999999997,
      "heapDeltaBytes": -56506148,
      "heapUsedBytes": 160054204,
      "domNodes": -3304,
      "jsHeapTotalBytes": 20680704,
      "scriptDurationMs": 866.6859999999999,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 470.5020000000104,
      "styleRecalcs": 24,
      "styleRecalcDurationMs": 29.419,
      "layouts": 5,
      "layoutDurationMs": 1.7189999999999999,
      "taskDurationMs": 134.008,
      "heapDeltaBytes": 5455136,
      "heapUsedBytes": 65033440,
      "domNodes": 192,
      "jsHeapTotalBytes": 3407872,
      "scriptDurationMs": 18.291,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 463.87700000002496,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 22.674999999999997,
      "layouts": 4,
      "layoutDurationMs": 0.9759999999999999,
      "taskDurationMs": 173.736,
      "heapDeltaBytes": -22345452,
      "heapUsedBytes": 47420176,
      "domNodes": -219,
      "jsHeapTotalBytes": 5156864,
      "scriptDurationMs": 16.245,
      "eventListeners": -134,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

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/missingModel/missingModelScan.ts`:
- Around line 246-259: The fallback lookup using only the model name on line 250
can match candidates across multiple directories, causing incorrect enrichment
of directory/url/hash properties based on iteration order. Before using the
fallback candidates, validate that they don't represent ambiguous matches across
different directories. If the fallback candidates exist in multiple directories,
skip the enrichment loop to avoid stamping wrong directory/url/hash values, only
proceeding with enrichment when the match is unambiguous or the candidate lacks
a directory specification.
🪄 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 Plus

Run ID: 6f8f890d-edd2-49c7-9770-d24616c15ed9

📥 Commits

Reviewing files that changed from the base of the PR and between c296842 and 6958bb7.

📒 Files selected for processing (12)
  • browser_tests/fixtures/helpers/TemplateHelper.ts
  • browser_tests/fixtures/helpers/WorkflowHelper.ts
  • browser_tests/tests/nodeHelp.spec.ts
  • browser_tests/tests/propertiesPanel/errorsTabMissingModels.spec.ts
  • browser_tests/tests/templateFilteringCount.spec.ts
  • src/platform/missingModel/__fixtures__/activeSubgraphUnmatchedModel.json
  • src/platform/missingModel/__fixtures__/bypassedSubgraphUnmatchedModel.json
  • src/platform/missingModel/missingModelPipeline.test.ts
  • src/platform/missingModel/missingModelPipeline.ts
  • src/platform/missingModel/missingModelScan.test.ts
  • src/platform/missingModel/missingModelScan.ts
  • src/platform/missingModel/types.ts
💤 Files with no reviewable changes (2)
  • src/platform/missingModel/fixtures/activeSubgraphUnmatchedModel.json
  • src/platform/missingModel/fixtures/bypassedSubgraphUnmatchedModel.json

Comment on lines 246 to 259
for (const model of deduped) {
const dirKey = `${model.name}::${model.directory}`
const exact = candidatesByKey.get(dirKey)
const fallback = candidatesByKey.get(model.name)
const existing = exact?.length ? exact : fallback
if (existing) {
for (const c of existing) {
if (c.directory && c.directory !== model.directory) continue
c.directory ??= model.directory
c.url ??= model.url
c.hash ??= model.hash
c.hashType ??= model.hash_type
}
} else {
unmatched.push(model)
if (!existing) continue
for (const c of existing) {
if (c.directory && c.directory !== model.directory) continue
c.directory ??= model.directory
c.url ??= model.url
c.hash ??= model.hash
c.hashType ??= model.hash_type
}
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Prevent ambiguous name-only enrichment across multiple directories.

Line 250 falls back to model.name even when that name exists in multiple
embedded directories. For candidates without directory, this can stamp the
wrong directory/url/hash based on iteration order.

Suggested fix
   const deduped: ModelFile[] = []
   const enrichedKeys = new Set<string>()
+  const modelDirsByName = new Map<string, Set<string | undefined>>()
   for (const model of embeddedModels) {
     const dedupeKey = `${model.name}::${model.directory}`
     if (enrichedKeys.has(dedupeKey)) continue
     enrichedKeys.add(dedupeKey)
     deduped.push(model)
+
+    const dirs = modelDirsByName.get(model.name) ?? new Set<string | undefined>()
+    dirs.add(model.directory)
+    modelDirsByName.set(model.name, dirs)
   }

   for (const model of deduped) {
     const dirKey = `${model.name}::${model.directory}`
     const exact = candidatesByKey.get(dirKey)
     const fallback = candidatesByKey.get(model.name)
-    const existing = exact?.length ? exact : fallback
+    const canUseNameFallback = (modelDirsByName.get(model.name)?.size ?? 0) <= 1
+    const existing = exact?.length
+      ? exact
+      : canUseNameFallback
+        ? fallback
+        : undefined
     if (!existing) continue
     for (const c of existing) {
       if (c.directory && c.directory !== model.directory) continue
       c.directory ??= model.directory
       c.url ??= model.url
🤖 Prompt for 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.

In `@src/platform/missingModel/missingModelScan.ts` around lines 246 - 259, The
fallback lookup using only the model name on line 250 can match candidates
across multiple directories, causing incorrect enrichment of directory/url/hash
properties based on iteration order. Before using the fallback candidates,
validate that they don't represent ambiguous matches across different
directories. If the fallback candidates exist in multiple directories, skip the
enrichment loop to avoid stamping wrong directory/url/hash values, only
proceeding with enrichment when the match is unambiguous or the candidate lacks
a directory specification.

@codecov

codecov Bot commented Jun 19, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@            Coverage Diff             @@
##             main   #13000      +/-   ##
==========================================
+ Coverage   76.06%   76.27%   +0.20%     
==========================================
  Files        1573     1573              
  Lines       95592   100749    +5157     
  Branches    28860    30380    +1520     
==========================================
+ Hits        72710    76842    +4132     
- Misses      22094    23116    +1022     
- Partials      788      791       +3     
Flag Coverage Δ
unit 62.90% <100.00%> (-0.03%) ⬇️

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

Files with missing lines Coverage Δ
src/platform/missingModel/missingModelPipeline.ts 86.04% <100.00%> (+6.25%) ⬆️
src/platform/missingModel/missingModelScan.ts 96.95% <100.00%> (+1.41%) ⬆️

... and 286 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.

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant