Skip to content

fix: stop reporting handled jobs-fetch failures as errors - #14507

Open
mattmillerai wants to merge 2 commits into
mainfrom
matt/fe-1466-jobs-fetch-error-noise
Open

fix: stop reporting handled jobs-fetch failures as errors#14507
mattmillerai wants to merge 2 commits into
mainfrom
matt/fe-1466-jobs-fetch-error-noise

Conversation

@mattmillerai

@mattmillerai mattmillerai commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

ELI-5

When the app asks the server "what jobs do I have?", that question can fail for boring reasons — you weren't signed in yet, or you closed the tab mid-question. The app already shrugged those off and kept working, but it also shouted "ERROR!" into our monitoring every time, which made real problems hard to find. Now it only shouts when something is actually wrong.

Summary

The jobs poll already degrades gracefully — on a non-OK status or a thrown fetch it returns an empty result set and the UI carries on — but it logged both paths with console.error, so every handled failure was recorded as an error session in RUM. Failures that are ordinary lifecycle events no longer report; genuine faults still do.

Changes

  • What: fetchJobsRaw now classifies its failures instead of treating them all as errors. A 401 logs at warn. A request cancelled because the page is going away is not logged at all. A 403, a 5xx, a body that fails schema validation, and a real network fault all still log at console.error. Every path returns the same empty result set as before, so callers and the UI are unchanged.
  • What: aborts are identified positively rather than by pattern-matching the error. A small page-teardown AbortSignal (src/utils/pageTeardownUtil.ts) is aborted when the page is discarded and passed with the jobs request, so a teardown cancellation is recognisable via signal.aborted even when the browser surfaces it as a bare TypeError: Failed to fetch. Explicit AbortError rejections are recognised too. fetchJobDetail gets the same treatment.
  • What: the abort fires only on a non-persisted pagehide. pagehide rather than beforeunload because beforeunload also fires for navigations the user then cancels; and persisted-only-excluded because a persisted pagehide is a back/forward-cache freeze, not a discard — the page resumes, and cancelling its poll would settle an empty snapshot over the queue, which in turn stops polling (useQueuePolling only schedules while activeJobsCount === 1). The controller is re-minted on pageshow, so a browser that reports a discard for a page it later restores is not left with a spent signal.

If teardown somehow cancels a request before pagehide fires, the failure is still reported — the fallback direction is "noisier", never "silently swallowed".

Review Focus

Why the 401 is not gated, despite being the obvious fix. The request seam these fetchers are injected with already waits for auth to resolve before every cloud request (waitForAuthInitialization in src/scripts/api.ts, awaited at the top of fetchApi), and a 401 response is already retried once behind a token re-mint (fetchWithUnifiedRemint). So the ordering gate the ticket proposed exists; adding a second one in the jobs layer would duplicate it. What still reaches this code is a poll that outran its session — an unauthenticated or expired session, or the 10s auth-initialisation timeout elapsing — which is a lifecycle state, not a defect. Hence warn rather than a new gate. The residual timeout case already logs its own warning where it happens.

The 403 is deliberately still an error. Reading the server side, a 403 on this endpoint is not raised by the jobs handler at all — it comes from shared request-authorisation middleware, which returns 403 for several unrelated reasons (the credential type not being accepted for the route, an authorisation predicate failing for the account, and an account scheduled for deletion). At least one of those is an expected terminal state and at least one would be a real bug, so the ~79 sessions are almost certainly a mix. The frontend cannot currently separate them because it logs only the status code and discards the response body, which carries a machine-readable error type. Keeping 403 at console.error preserves that signal rather than hiding a possible authorisation bug behind this cleanup. Follow-up worth filing separately: surface the response's error type alongside the status so the cluster can be split, then decide whether anything is a real defect. Deliberately not widened here — the server side is out of scope for this change.

Scope calls. An aborted fetch still returns the same empty result set rather than rethrowing, so callers cannot distinguish "no jobs" from "cancelled". Raised in review; not changed here. With the abort now restricted to a genuine discard the surviving-page case is gone, and rethrowing is a change to the fetch contract that cascades into api.getQueue/api.getHistory, queueStore, assetsStore and missingMediaAssetResolver — each needing its own abort guard at the log site or it re-introduces the noise this PR removes. Filed as a follow-up. The other TypeError: Failed to fetch sites (remote config, the bare fetch wrapper) are the same pattern at different call sites and are out of scope here; src/utils/pageTeardownUtil.ts is written so they can reuse it.

Verification

vue-tsc --noEmit (whole repo), oxlint --type-aware, eslint (0 errors) and oxfmt all clean. vitest run over src/platform/remote/comfyui/jobs, src/platform/workflow/cloud/getWorkflowFromHistory.test.ts, src/platform/missingMedia, src/platform/assets, src/composables/queue, src/stores/queueStore.test.ts, src/services/jobOutputCache.test.ts and src/utils: 106 files / 1752 tests passing. New unit tests cover the abort path, the page-discard path (list and detail), the frozen-page path (asserting the signal is not aborted and the failure still reports), the restored-page path, the 401, a 5xx, a real network error, and a malformed body — each asserting which of them report.

The RUM numbers below are as reported on the dashboard; they were not re-queried while making this change.

Provenance

This came out of a goal run against the Cloud frontend error-free sessions Datadog dashboard ("State of Dog"), RUM app Comfy Cloud Frontend, env prod-v2, measured over a rolling 7-day window ending 2026-07-31. Baseline: error-free sessions 17–22% daily, 8,662 of 10,790 sessions containing at least one error; target ≥90% daily. The three clusters this addresses — TypeError: Failed to fetch (554 sessions), 401 (113), 403 (79) — are 746 sessions/week combined, about 18% of the residual error sessions once the extension-loading 404 cluster is excluded. The first two stop reporting; the third is left reporting on purpose, per above.

@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 10 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 2a9da6f5-b2f6-4f7b-b01b-b5dd51fb88f5

📥 Commits

Reviewing files that changed from the base of the PR and between 3143447 and 98e8943.

📒 Files selected for processing (4)
  • src/platform/remote/comfyui/jobs/fetchJobs.test.ts
  • src/platform/remote/comfyui/jobs/fetchJobs.ts
  • src/platform/workflow/cloud/getWorkflowFromHistory.test.ts
  • src/utils/pageTeardownUtil.ts

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

@github-actions

github-actions Bot commented Jul 31, 2026

Copy link
Copy Markdown

🎭 Playwright: ✅ 1780 passed, 0 failed · 1 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1761 / ❌ 0 / ⚠️ 0 / ⏭️ 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)

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 07/31/2026, 09:30:59 PM UTC

Links

📦 Bundle: 8.19 MB gzip 🔴 +889 B

Details

Summary

  • Raw size: 34.4 MB baseline 34.4 MB — 🔴 +1.74 kB
  • Gzip: 8.19 MB baseline 8.19 MB — 🔴 +889 B
  • Brotli: 5.67 MB baseline 5.67 MB — 🔴 +888 B
  • Bundles: 426 current • 426 baseline • 144 added / 144 removed

Category Glance
Data & Services 🔴 +1.73 kB (3.45 MB) · Graph Workspace 🔴 +3 B (1.29 MB) · Utilities & Hooks 🟢 -1 B (386 kB) · Vendor & Third-Party ⚪ 0 B (15.7 MB) · Other ⚪ 0 B (12.7 MB) · Panels & Settings ⚪ 0 B (551 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-6TQAq4tL.js (new) 3.62 kB 🔴 +3.62 kB 🔴 +1.81 kB 🔴 +1.58 kB
assets/index-BrETp0Pb.js (removed) 3.62 kB 🟢 -3.62 kB 🟢 -1.8 kB 🟢 -1.57 kB

Status: 1 added / 1 removed

Graph Workspace — 1.29 MB (baseline 1.29 MB) • 🔴 +3 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-BOFy_K9Z.js (new) 1.29 MB 🔴 +1.29 MB 🔴 +276 kB 🔴 +208 kB
assets/GraphView-Dif-p3mH.js (removed) 1.29 MB 🟢 -1.29 MB 🟢 -276 kB 🟢 -208 kB

Status: 1 added / 1 removed / 1 unchanged

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BEkcYnM1.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.22 kB 🔴 +5.51 kB
assets/CloudSurveyView-Curd74NH.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.22 kB 🟢 -5.5 kB
assets/CloudLoginView-84FC6Tpt.js (removed) 11.6 kB 🟢 -11.6 kB 🟢 -3.1 kB 🟢 -2.73 kB
assets/CloudLoginView-Bh82TuX6.js (new) 11.6 kB 🔴 +11.6 kB 🔴 +3.11 kB 🔴 +2.73 kB
assets/CloudSignupView-B8Ii6LgV.js (new) 9.9 kB 🔴 +9.9 kB 🔴 +2.78 kB 🔴 +2.43 kB
assets/CloudSignupView-CjhHSXHX.js (removed) 9.9 kB 🟢 -9.9 kB 🟢 -2.77 kB 🟢 -2.43 kB
assets/CloudLayoutView-0j54j_-e.js (removed) 9.48 kB 🟢 -9.48 kB 🟢 -2.31 kB 🟢 -1.99 kB
assets/CloudLayoutView-CeDS0wt3.js (new) 9.48 kB 🔴 +9.48 kB 🔴 +2.31 kB 🔴 +1.99 kB
assets/UserCheckView-CHtxgPit.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/UserCheckView-DCrLYcHn.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.91 kB
assets/WidgetTextPreview-nZJSSD0Z.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.89 kB
assets/WidgetTextPreview-xQmkxYz4.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.89 kB
assets/CloudSubscriptionRedirectView-9wWfLE_j.js (removed) 5.99 kB 🟢 -5.99 kB 🟢 -2.23 kB 🟢 -1.94 kB
assets/CloudSubscriptionRedirectView-Clp9OCaI.js (new) 5.99 kB 🔴 +5.99 kB 🔴 +2.23 kB 🔴 +1.94 kB
assets/UserSelectView-C-0M3Xe0.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.95 kB 🟢 -1.72 kB
assets/UserSelectView-DlU2zPjC.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.96 kB 🔴 +1.72 kB
assets/CloudForgotPasswordView-Bip3V6qd.js (new) 5.09 kB 🔴 +5.09 kB 🔴 +1.73 kB 🔴 +1.51 kB
assets/CloudForgotPasswordView-o6c6865G.js (removed) 5.09 kB 🟢 -5.09 kB 🟢 -1.72 kB 🟢 -1.51 kB
assets/CloudAuthTimeoutView-CkEJmaFl.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.53 kB 🟢 -1.33 kB
assets/CloudAuthTimeoutView-CPBESqT_.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.34 kB
assets/OAuthLayoutView-C73itt4p.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -699 B 🟢 -595 B
assets/OAuthLayoutView-DqMbUz30.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +699 B 🔴 +594 B
assets/WidgetTextPreview-CDjQRW4e.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +90 B
assets/WidgetTextPreview-OER-X-5e.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -91 B

Status: 12 added / 12 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CUgY6Eb_.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.95 kB 🔴 +8.79 kB
assets/KeybindingPanel-DY4cwJlD.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.95 kB 🟢 -8.8 kB
assets/SecretsPanel-BjlauODB.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.86 kB 🟢 -6.89 kB
assets/SecretsPanel-Bns2p3xi.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.86 kB 🔴 +6.9 kB
assets/CreditsPanel-BNETpGCd.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.63 kB 🔴 +4.07 kB
assets/CreditsPanel-BWW1OMzw.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.63 kB 🟢 -4.06 kB
assets/SubscriptionPanel-Dgoexi89.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.63 kB 🟢 -3.17 kB
assets/SubscriptionPanel-DuY7VyP-.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.63 kB 🔴 +3.19 kB
assets/AboutPanel-CPJswhx-.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.03 kB 🟢 -2.71 kB
assets/AboutPanel-Dlg1o4NS.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.02 kB 🔴 +2.71 kB
assets/ExtensionPanel-BwEMAHRx.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.22 kB
assets/ExtensionPanel-DM6ZjPas.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/ServerConfigPanel-CeB3VrEq.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.93 kB 🔴 +1.73 kB
assets/ServerConfigPanel-DwipCpIE.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.73 kB
assets/UserPanel-BNeCXCoD.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/UserPanel-CNpsjJ8J.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.55 kB
assets/refreshRemoteConfig-Bg7gKKmi.js (new) 2.91 kB 🔴 +2.91 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/refreshRemoteConfig-DOMcfCZ6.js (removed) 2.91 kB 🟢 -2.91 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/cloudRemoteConfig-C2drZAKa.js (removed) 933 B 🟢 -933 B 🟢 -503 B 🟢 -416 B
assets/cloudRemoteConfig-DrkeqQdg.js (new) 933 B 🔴 +933 B 🔴 +505 B 🔴 +415 B
assets/refreshRemoteConfig-DQbYzuGr.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +88 B
assets/refreshRemoteConfig-ejO-nVJO.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -82 B

Status: 11 added / 11 removed / 15 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-CBxei8OE.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -4.15 kB 🟢 -3.62 kB
assets/SignUpForm-wfKZsxHh.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +4.15 kB 🔴 +3.62 kB
assets/auth-B8jpKlgd.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.27 kB 🔴 +1.09 kB
assets/auth-DWUMZxlS.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.27 kB 🟢 -1.09 kB
assets/usePostAuthRedirect-DpIUE3Ko.js (removed) 3.28 kB 🟢 -3.28 kB 🟢 -1.24 kB 🟢 -1.08 kB
assets/usePostAuthRedirect-Jz39LNfZ.js (new) 3.28 kB 🔴 +3.28 kB 🔴 +1.24 kB 🔴 +1.08 kB
assets/UpdatePasswordContent-BlpMBUnO.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -837 B 🟢 -731 B
assets/UpdatePasswordContent-Cbxxfom-.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +839 B 🔴 +729 B
assets/authStore-Cm0fsJ5v.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +104 B
assets/authStore-CTCu0wjH.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -101 B
assets/workspaceAuthStore-B6fWdKON.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -104 B
assets/workspaceAuthStore-DVIVV-rd.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +111 B
assets/auth-BKQZ0JVh.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -84 B
assets/auth-CiT7Bj7F.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +87 B

Status: 7 added / 7 removed / 3 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-CsfqCg1E.js (new) 90 kB 🔴 +90 kB 🔴 +19.2 kB 🔴 +16.5 kB
assets/ComfyHubPublishDialog-ql8xGToU.js (removed) 90 kB 🟢 -90 kB 🟢 -19.2 kB 🟢 -16.5 kB
assets/useShareDialog-CfoFlimX.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.04 kB
assets/useShareDialog-Dk05NAOs.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.69 kB 🔴 +5.03 kB
assets/feedbackDialog-Cw3kafin.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.86 kB 🔴 +1.59 kB
assets/feedbackDialog-DYuGqJz5.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.86 kB 🟢 -1.59 kB
assets/useRangeEditor-BY6B1A29.js (new) 3.23 kB 🔴 +3.23 kB 🔴 +1.13 kB 🔴 +1.02 kB
assets/useRangeEditor-DHIl-MQM.js (removed) 3.23 kB 🟢 -3.23 kB 🟢 -1.12 kB 🟢 -1.02 kB
assets/ComfyHubPublishDialog-B00VHNur.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +88 B
assets/ComfyHubPublishDialog-C3QhZPIE.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/useSubscriptionDialog-8ZqyhmAD.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -88 B
assets/useSubscriptionDialog-CFtJIlTQ.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +86 B

Status: 6 added / 6 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-CQFHUftB.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.73 kB 🔴 +3.31 kB
assets/ComfyQueueButton-wtVpKXiQ.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.73 kB 🟢 -3.31 kB
assets/useTerminalTabs-CBjIIiuo.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.26 kB
assets/useTerminalTabs-DHx6sys2.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.26 kB
assets/InviteMembersForm-BEyrlb82.js (new) 7.96 kB 🔴 +7.96 kB 🔴 +2.65 kB 🔴 +2.36 kB
assets/InviteMembersForm-zAgZPg_N.js (removed) 7.96 kB 🟢 -7.96 kB 🟢 -2.65 kB 🟢 -2.36 kB
assets/SubscribeButton-0HkT6OzW.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -952 B 🟢 -835 B
assets/SubscribeButton-B9UrA-iN.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +955 B 🔴 +836 B
assets/cloudFeedbackTopbarButton-Ba-AxxbK.js (removed) 705 B 🟢 -705 B 🟢 -419 B 🟢 -360 B
assets/cloudFeedbackTopbarButton-BUL3ep-m.js (new) 705 B 🔴 +705 B 🔴 +418 B 🔴 +367 B
assets/ComfyQueueButton-BHLLlLZ3.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -92 B
assets/ComfyQueueButton-CgCSlVb1.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +92 B

Status: 6 added / 6 removed / 9 unchanged

Data & Services — 3.45 MB (baseline 3.44 MB) • 🔴 +1.73 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-Desswf-R.js (removed) 3.17 MB 🟢 -3.17 MB 🟢 -734 kB 🟢 -553 kB
assets/settingStore-CfDiM_Ky.js (new) 3.17 MB 🔴 +3.17 MB 🔴 +734 kB 🔴 +553 kB
assets/load3dService-CATgbxRe.js (new) 132 kB 🔴 +132 kB 🔴 +29.2 kB 🔴 +24.6 kB
assets/load3dService-lxeLFe6E.js (removed) 132 kB 🟢 -132 kB 🟢 -29.2 kB 🟢 -24.6 kB
assets/api-DEbj4Qin.js (new) 94.7 kB 🔴 +94.7 kB 🔴 +26.4 kB 🔴 +22.7 kB
assets/api-CFh1altt.js (removed) 92 kB 🟢 -92 kB 🟢 -25.4 kB 🟢 -21.8 kB
assets/workflowShareService-B_00GnTr.js (removed) 16.4 kB 🟢 -16.4 kB 🟢 -4.89 kB 🟢 -4.33 kB
assets/workflowShareService-DtMh0giX.js (new) 16.4 kB 🔴 +16.4 kB 🔴 +4.89 kB 🔴 +4.33 kB
assets/keybindingService-b_Qnzj4S.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/keybindingService-GgF8tXO1.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -1.82 kB 🟢 -1.57 kB
assets/releaseStore-C9qI926_.js (new) 6.75 kB 🔴 +6.75 kB 🔴 +2.04 kB 🔴 +1.78 kB
assets/releaseStore-B82CpeA9.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/systemStatsStore-ldLhlzij.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/systemStatsStore-YJj_mr79.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/userStore-BeFGQXdZ.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +898 B 🔴 +801 B
assets/userStore-Dm5crYYC.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -896 B 🟢 -792 B
assets/audioService-DELeYxBr.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +828 B 🔴 +724 B
assets/audioService-XvwLTGvP.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -827 B 🟢 -724 B
assets/dialogService-aIHXvNsb.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -84 B
assets/dialogService-CCdE8Bal.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +84 B
assets/releaseStore--H4DQwSI.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -81 B
assets/releaseStore-hMCsw4Bq.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +88 B
assets/settingStore-DaEDYYiK.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -80 B
assets/settingStore-zme7FJmS.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +73 B
assets/assetsStore-A75kkz-Y.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +86 B
assets/assetsStore-DtA1fZxa.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -85 B
assets/api-B8zKRb-x.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-CZLYFI-v.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 14 added / 14 removed / 3 unchanged

Utilities & Hooks — 386 kB (baseline 386 kB) • 🟢 -1 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-D6ucObEk.js (removed) 235 kB 🟢 -235 kB 🟢 -52.5 kB 🟢 -42.7 kB
assets/useConflictDetection-CQRPyjsR.js (new) 235 kB 🔴 +235 kB 🔴 +52.5 kB 🔴 +42.7 kB
assets/useLoad3d-d4-RfB9K.js (removed) 25.7 kB 🟢 -25.7 kB 🟢 -5.79 kB 🟢 -5.12 kB
assets/useLoad3d-IKxIbq8S.js (new) 25.7 kB 🔴 +25.7 kB 🔴 +5.79 kB 🔴 +5.13 kB
assets/useLoad3dViewer-Bf2vOwLJ.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.36 kB
assets/useLoad3dViewer-dcMYGvbA.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.97 kB 🟢 -4.35 kB
assets/useImageCrop-B7VVZUWE.js (new) 15 kB 🔴 +15 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useImageCrop-BO5hXut2.js (removed) 15 kB 🟢 -15 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useDowngradeToPersonal-CrW9cSUS.js (new) 8.85 kB 🔴 +8.85 kB 🔴 +2.53 kB 🔴 +2.17 kB
assets/useDowngradeToPersonal-Dzh4NZrA.js (removed) 8.85 kB 🟢 -8.85 kB 🟢 -2.53 kB 🟢 -2.17 kB
assets/useFeatureFlags-BbzBbU31.js (new) 7.31 kB 🔴 +7.31 kB 🔴 +2.18 kB 🔴 +1.83 kB
assets/useFeatureFlags-C3P7y_pV.js (removed) 7.31 kB 🟢 -7.31 kB 🟢 -2.18 kB 🟢 -1.83 kB
assets/assetPreviewUtil-BBnE3t3C.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +968 B 🔴 +845 B
assets/assetPreviewUtil-DQU4Jtf0.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -966 B 🟢 -845 B
assets/useUpstreamValue-7X9fdOsw.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +757 B 🔴 +679 B
assets/useUpstreamValue-LLR3N-OS.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -756 B 🟢 -674 B
assets/useWorkspaceTierLabel-D2ajqvJd.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -812 B 🟢 -698 B
assets/useWorkspaceTierLabel-D4_MXGSK.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +815 B 🔴 +695 B
assets/subscriptionCheckoutUtil-BMYM6fvK.js (new) 841 B 🔴 +841 B 🔴 +502 B 🔴 +424 B
assets/subscriptionCheckoutUtil-BRtB5uOy.js (removed) 841 B 🟢 -841 B 🟢 -499 B 🟢 -425 B
assets/useSessionCookie-C_bswo0V.js (removed) 692 B 🟢 -692 B 🟢 -353 B 🟢 -307 B
assets/useSessionCookie-CrX9oXc9.js (new) 692 B 🔴 +692 B 🔴 +361 B 🔴 +309 B
assets/useLoad3d-Bf38tvJw.js (removed) 311 B 🟢 -311 B 🟢 -164 B 🟢 -150 B
assets/useLoad3d-CaQsJc1k.js (new) 311 B 🔴 +311 B 🔴 +164 B 🔴 +147 B
assets/useSessionCookie-CLDplJEb.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +83 B
assets/useSessionCookie-CxoPK_kS.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -81 B
assets/useFeatureFlags-CeVP4Ay6.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -82 B
assets/useFeatureFlags-zb9bp56k.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +86 B
assets/useLoad3dViewer-C-XJ3YDV.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +85 B
assets/useLoad3dViewer-hi9fFGw-.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -84 B
assets/useCurrentUser-DcM0LU5o.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +86 B
assets/useCurrentUser-q0a_TQAI.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -85 B

Status: 16 added / 16 removed / 20 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-BigJRI52.js (removed) 111 kB 🟢 -111 kB 🟢 -28.6 kB 🟢 -24.3 kB
assets/core-BtJKwfux.js (new) 111 kB 🔴 +111 kB 🔴 +28.6 kB 🔴 +24.3 kB
assets/WidgetSelect-BgsUP9Yi.js (removed) 88 kB 🟢 -88 kB 🟢 -19.9 kB 🟢 -17 kB
assets/WidgetSelect-D4Qoip88.js (new) 88 kB 🔴 +88 kB 🔴 +19.9 kB 🔴 +17 kB
assets/Load3D-1I59CbWs.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +9.98 kB
assets/Load3D-Cx2XbaWf.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -9.98 kB
assets/WidgetVideoEdit-6hgM8HR-.js (new) 63.4 kB 🔴 +63.4 kB 🔴 +14.6 kB 🔴 +12.8 kB
assets/WidgetVideoEdit-BXFxbbm-.js (removed) 63.4 kB 🟢 -63.4 kB 🟢 -14.6 kB 🟢 -12.8 kB
assets/WorkspaceSettingsPanelContent-Bql4voPA.js (removed) 61.6 kB 🟢 -61.6 kB 🟢 -13.2 kB 🟢 -11.5 kB
assets/WorkspaceSettingsPanelContent-ByKjRzGZ.js (new) 61.6 kB 🔴 +61.6 kB 🔴 +13.2 kB 🔴 +11.4 kB
assets/SubscriptionTransitionPreviewWorkspace-CehfBrK2.js (new) 61.3 kB 🔴 +61.3 kB 🔴 +12.5 kB 🔴 +10.9 kB
assets/SubscriptionTransitionPreviewWorkspace-DlaCZugU.js (removed) 61.3 kB 🟢 -61.3 kB 🟢 -12.5 kB 🟢 -10.9 kB
assets/Preview3d-BNrkjn4O.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.31 kB 🔴 +7.25 kB
assets/Preview3d-CkRJnOW0.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.3 kB 🟢 -7.24 kB
assets/main-D0a2RANR.js (removed) 46.9 kB 🟢 -46.9 kB 🟢 -13.8 kB 🟢 -12 kB
assets/main-EEJyOxlt.js (new) 46.9 kB 🔴 +46.9 kB 🔴 +13.8 kB 🔴 +12 kB
assets/SubscriptionRequiredDialogContentUnified-BgmWZK1_.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.42 kB 🔴 +8.21 kB
assets/SubscriptionRequiredDialogContentUnified-CGqp5EmD.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.42 kB 🟢 -8.2 kB
assets/MembersPanelContent-BYSzHvwC.js (new) 41.8 kB 🔴 +41.8 kB 🔴 +8.79 kB 🔴 +7.82 kB
assets/MembersPanelContent-DgQXZtd9.js (removed) 41.8 kB 🟢 -41.8 kB 🟢 -8.79 kB 🟢 -7.83 kB
assets/WidgetBoundingBoxes-C2TSpzXa.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.13 kB
assets/WidgetBoundingBoxes-LUVg1E1l.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.15 kB 🟢 -8.13 kB
assets/WidgetPainter-BIfHiwhR.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.87 kB 🔴 +6.97 kB
assets/WidgetPainter-C90N8x2J.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -6.97 kB
assets/Load3dViewerContent-BIQwT4d4.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.26 kB 🟢 -5.43 kB
assets/Load3dViewerContent-CLNtQJMo.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.26 kB 🔴 +5.44 kB
assets/SubscriptionPanelContentWorkspace-BM3A2WKl.js (new) 29.5 kB 🔴 +29.5 kB 🔴 +6.83 kB 🔴 +6 kB
assets/SubscriptionPanelContentWorkspace-CZ2FCQXQ.js (removed) 29.5 kB 🟢 -29.5 kB 🟢 -6.83 kB 🟢 -6 kB
assets/SubscriptionRequiredDialogContent-DRexwawb.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +6.14 kB 🔴 +5.41 kB
assets/SubscriptionRequiredDialogContent-zU9P945X.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -6.14 kB 🟢 -5.4 kB
assets/SubscriptionRequiredDialogContentWorkspace-B-ber5Qg.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.8 kB 🟢 -5.1 kB
assets/SubscriptionRequiredDialogContentWorkspace-u_lpo-nT.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.8 kB 🔴 +5.1 kB
assets/load3d-CR9w9GN6.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.4 kB 🟢 -4.67 kB
assets/load3d-D0g9QqHo.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.4 kB 🔴 +4.67 kB
assets/CurrentUserPopoverWorkspace-0zeluSOu.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.69 kB 🔴 +4.17 kB
assets/CurrentUserPopoverWorkspace-s0hdwkLB.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.69 kB 🟢 -4.18 kB
assets/SignInContent-DQymAMPt.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.1 kB 🔴 +4.45 kB
assets/SignInContent-TV5TeGmz.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.09 kB 🟢 -4.45 kB
assets/CreditsTile-BTx9jW4R.js (removed) 17.2 kB 🟢 -17.2 kB 🟢 -4.55 kB 🟢 -4.01 kB
assets/CreditsTile-DZF0VWK7.js (new) 17.2 kB 🔴 +17.2 kB 🔴 +4.55 kB 🔴 +4.01 kB
assets/WidgetRecordAudio-BtkhhxGF.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-DTUsLY5b.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.59 kB 🟢 -4.1 kB
assets/WidgetInputNumber-B9nP7lYE.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetInputNumber-jZt97_4W.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/WidgetRange-Bk0oOdCf.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.54 kB 🔴 +3.11 kB
assets/WidgetRange-CQKnsRg8.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.54 kB 🟢 -3.11 kB
assets/WaveAudioPlayer-CQbf6sc6.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.05 kB
assets/WaveAudioPlayer-CwC7WaFP.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.03 kB
assets/WidgetCurve-Dh8NmKO-.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.15 kB
assets/WidgetCurve-DmOHOnrG.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.47 kB 🔴 +3.15 kB
assets/TeamWorkspacesDialogContent-B42LnHFW.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.63 kB
assets/TeamWorkspacesDialogContent-rL1vb5kG.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/onboardingCloudRoutes-Cs60N0DO.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.78 kB 🔴 +2.4 kB
assets/onboardingCloudRoutes-VHdpQc7e.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.78 kB 🟢 -2.39 kB
assets/Load3DConfiguration-CYY0-awa.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.6 kB 🟢 -2.3 kB
assets/Load3DConfiguration-DMDinClJ.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/WidgetImageCrop-Bzb8lv-0.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.65 kB 🔴 +2.34 kB
assets/WidgetImageCrop-rpqRvbgt.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.65 kB 🟢 -2.34 kB
assets/SetMemberCreditLimitDialogContent-i2DE_rjO.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.04 kB
assets/SetMemberCreditLimitDialogContent-YWoz0UPe.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/nodeTemplates-DdaPGmZI.js (new) 8.28 kB 🔴 +8.28 kB 🔴 +2.84 kB 🔴 +2.5 kB
assets/nodeTemplates-K_ICHeNT.js (removed) 8.28 kB 🟢 -8.28 kB 🟢 -2.84 kB 🟢 -2.5 kB
assets/NightlySurveyController-BjsL03cL.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.24 kB
assets/NightlySurveyController-DDo00UIx.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.24 kB
assets/WidgetWithControl-DdlknHpq.js (new) 6.35 kB 🔴 +6.35 kB 🔴 +2.58 kB 🔴 +2.27 kB
assets/WidgetWithControl-H14hPB_s.js (removed) 6.35 kB 🟢 -6.35 kB 🟢 -2.57 kB 🟢 -2.27 kB
assets/tierBenefits-17vOIMC0.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +1.96 kB 🔴 +1.72 kB
assets/tierBenefits-DOjtySFe.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -1.96 kB 🟢 -1.72 kB
assets/CancelSubscriptionDialogContent-BaDeGN53.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.74 kB
assets/CancelSubscriptionDialogContent-DxEE6Qa2.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.74 kB
assets/load3dPreviewExtensions-8a9fXT-Z.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.59 kB
assets/load3dPreviewExtensions-DI61TqWJ.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/missingModelDownload-DiDJFVCS.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -2.07 kB 🟢 -1.81 kB
assets/missingModelDownload-pyfgSa-y.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +2.07 kB 🔴 +1.81 kB
assets/launchCancellationFlow-BlFolkkD.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/launchCancellationFlow-D4ElJKRB.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.77 kB 🟢 -1.56 kB
assets/CreateWorkspaceDialogContent-BR2dPsCM.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-D6IMuH03.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/ChangeMemberRoleDialogContent-DbCt4r1t.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.63 kB 🟢 -1.42 kB
assets/ChangeMemberRoleDialogContent-DHUx_n3P.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.63 kB 🔴 +1.43 kB
assets/EditWorkspaceDialogContent-Dpds201A.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/EditWorkspaceDialogContent-DVf50-2f.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/WidgetTextarea-C8-g0Ncw.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.87 kB 🟢 -1.62 kB
assets/WidgetTextarea-CND0qo-B.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/saveMesh-BYnsJNX5.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.34 kB
assets/saveMesh-Djtl9GJO.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.34 kB
assets/WorkspacePanelContent-CTOHZlaE.js (new) 4.72 kB 🔴 +4.72 kB 🔴 +1.6 kB 🔴 +1.4 kB
assets/WorkspacePanelContent-XseblHRV.js (removed) 4.72 kB 🟢 -4.72 kB 🟢 -1.6 kB 🟢 -1.4 kB
assets/InviteMemberDialogContent-3qsFL44w.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.58 kB 🔴 +1.38 kB
assets/InviteMemberDialogContent-B3JKAn5M.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.58 kB 🟢 -1.37 kB
assets/ValueControlPopover-CoAVFZ2L.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/ValueControlPopover-Wc_PcWmV.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.54 kB 🟢 -1.38 kB
assets/DeleteWorkspaceDialogContent-BBcIr2pq.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.23 kB
assets/DeleteWorkspaceDialogContent-DQNIyZLE.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.23 kB
assets/LeaveWorkspaceDialogContent-DYPU5F7p.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.18 kB
assets/LeaveWorkspaceDialogContent-k8QGfLd8.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RemoveMemberDialogContent-Bfi3V0gU.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.33 kB 🔴 +1.15 kB
assets/RemoveMemberDialogContent-qAgBJJtR.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.33 kB 🟢 -1.15 kB
assets/RevokeInviteDialogContent-BIAB7BL1.js (removed) 3.56 kB 🟢 -3.56 kB 🟢 -1.34 kB 🟢 -1.16 kB
assets/RevokeInviteDialogContent-DPyqz3pW.js (new) 3.56 kB 🔴 +3.56 kB 🔴 +1.35 kB 🔴 +1.18 kB
assets/InviteMemberUpsellDialogContent-bIkdRscP.js (new) 3.44 kB 🔴 +3.44 kB 🔴 +1.23 kB 🔴 +1.08 kB
assets/InviteMemberUpsellDialogContent-lGtVgo6y.js (removed) 3.44 kB 🟢 -3.44 kB 🟢 -1.22 kB 🟢 -1.08 kB
assets/workspaceCheckoutTelemetry-DFxVywiH.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.33 kB
assets/workspaceCheckoutTelemetry-DPItX_Ui.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.32 kB
assets/Media3DTop-CuVj1VmA.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/Media3DTop-MIZJEYY9.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/GlobalToast-Cwyl-uq_.js (new) 3 kB 🔴 +3 kB 🔴 +1.22 kB 🔴 +1.08 kB
assets/GlobalToast-igvInHEu.js (removed) 3 kB 🟢 -3 kB 🟢 -1.22 kB 🟢 -1.04 kB
assets/load3dAdvanced-7spWRmmI.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +955 B
assets/load3dAdvanced-tisJXkkm.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -949 B
assets/SubscribeToRun-CZ7gnG2m.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +901 B
assets/SubscribeToRun-KENeM3OP.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -934 B
assets/MediaAudioTop-6fJAXMRE.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +806 B 🔴 +666 B
assets/MediaAudioTop-CLuqft6v.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -805 B 🟢 -664 B
assets/CloudRunButtonWrapper-5ayArb0E.js (new) 1.05 kB 🔴 +1.05 kB 🔴 +515 B 🔴 +452 B
assets/CloudRunButtonWrapper-DpPnQH3j.js (removed) 1.05 kB 🟢 -1.05 kB 🟢 -513 B 🟢 -473 B
assets/cloudSessionCookie-BMeCQdHP.js (new) 933 B 🔴 +933 B 🔴 +431 B 🔴 +380 B
assets/cloudSessionCookie-Br2t9iWr.js (removed) 933 B 🟢 -933 B 🟢 -429 B 🟢 -377 B
assets/cloudBadges-3N4IErnd.js (new) 922 B 🔴 +922 B 🔴 +512 B 🔴 +438 B
assets/cloudBadges-DE4HeqZF.js (removed) 922 B 🟢 -922 B 🟢 -511 B 🟢 -436 B
assets/Load3DAdvanced-BR-TMfyp.js (new) 761 B 🔴 +761 B 🔴 +423 B 🔴 +359 B
assets/Load3DAdvanced-DrPodR9J.js (removed) 761 B 🟢 -761 B 🟢 -423 B 🟢 -356 B
assets/nightlyBadges-CquKSntA.js (removed) 411 B 🟢 -411 B 🟢 -269 B 🟢 -229 B
assets/nightlyBadges-DMSgON6h.js (new) 411 B 🔴 +411 B 🔴 +270 B 🔴 +263 B
assets/missingModelDownload-D3b_F7jE.js (removed) 371 B 🟢 -371 B 🟢 -203 B 🟢 -173 B
assets/missingModelDownload-Dw7LrpOK.js (new) 371 B 🔴 +371 B 🔴 +202 B 🔴 +172 B
assets/SubscriptionPanelContentWorkspace-CL70F4uV.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -93 B
assets/SubscriptionPanelContentWorkspace-ZHmlOKIV.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +93 B
assets/Load3dViewerContent-BHyXuagf.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -103 B
assets/Load3dViewerContent-jl_2EH2v.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/Load3DAdvanced-BDZql5r9.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +91 B
assets/Load3DAdvanced-TAis4cWQ.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -90 B
assets/WidgetLegacy-cF9wXHKo.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +102 B
assets/WidgetLegacy-DX5cEmOB.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -94 B
assets/workflowDraftStoreV2-B_stL23A.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +108 B
assets/workflowDraftStoreV2-ButH3WMU.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -116 B
assets/Load3D-CJZpYzhN.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +92 B
assets/Load3D-T4XvHFEt.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -81 B
assets/changeTracker-BuSIdOii.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +84 B
assets/changeTracker-Cme5kmZm.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -77 B

Status: 70 added / 70 removed / 210 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.6 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 49.4 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.6 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.8 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.9 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.5 MB heap
minimap-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.9 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.7 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.6 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.5 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 131ms TBT · 93.5 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.6 MB heap
vue-large-graph-idle: · 55.4 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 165.5 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 235ms TBT · 152.3 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.8 MB heap

⚠️ 9 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 472ms 548ms +16% ⚠️ z=4.9
canvas-zoom-sweep: task duration 371ms 380ms +2% ⚠️ z=2.3
large-graph-idle: task duration 660ms 744ms +13% ⚠️ z=3.7
large-graph-pan: task duration 1232ms 1345ms +9% ⚠️ z=6.1
large-graph-pan: script duration 413ms 450ms +9% ⚠️ z=2.1
minimap-idle: task duration 665ms 743ms +12% ⚠️ z=4.5
minimap-idle: script duration 92ms 121ms +32% ⚠️ z=2.3
subgraph-dom-widget-clipping: task duration 389ms 435ms +12% ⚠️ z=3.1
subgraph-idle: task duration 498ms 487ms -2% ⚠️ z=3.7
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms -0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 8ms 8ms -2% z=-3.4
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 8 -20% z=-5.6
canvas-idle: task duration 472ms 548ms +16% ⚠️ z=4.9
canvas-idle: script duration 17ms 19ms +17% z=-2.7
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 69.6 MB 69.6 MB -0%
canvas-idle: DOM nodes 20 16 -20% z=-5.2
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 +1%
canvas-mouse-sweep: layout duration 3ms 4ms +4% z=0.1
canvas-mouse-sweep: style recalc duration 36ms 44ms +20% z=0.3
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 73 76 +4% z=-1.1
canvas-mouse-sweep: task duration 875ms 947ms +8% z=1.4
canvas-mouse-sweep: script duration 115ms 134ms +16% z=-0.3
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.3 MB 49.4 MB +0%
canvas-mouse-sweep: DOM nodes -281 -279 -1% z=-131.8
canvas-mouse-sweep: event listeners -148 -147 -1% z=-37.3
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms -7% z=-1.3
canvas-zoom-sweep: style recalc duration 15ms 17ms +12% z=-1.7
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 +0% z=-0.6
canvas-zoom-sweep: task duration 371ms 380ms +2% ⚠️ z=2.3
canvas-zoom-sweep: script duration 18ms 19ms +6% z=-2.7
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 72.4 MB 72.3 MB -0%
canvas-zoom-sweep: DOM nodes 76 78 +2% z=-2.2
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 8ms 9ms +15% z=-1.3
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 12 +9% z=-2.2
dom-widget-clipping: task duration 379ms 394ms +4% z=1.8
dom-widget-clipping: script duration 55ms 62ms +12% z=-1.9
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 53.3 MB 53.6 MB +1%
dom-widget-clipping: DOM nodes 18 20 +11% z=-1.5
dom-widget-clipping: event listeners 0 1 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms -0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 7ms 8ms +12% z=-3.8
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 9 -6% z=-9.9
large-graph-idle: task duration 660ms 744ms +13% ⚠️ z=3.7
large-graph-idle: script duration 91ms 122ms +35% z=1.9
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 63.8 MB 63.8 MB -0%
large-graph-idle: DOM nodes -280 -282 +1% z=-338.8
large-graph-idle: event listeners -142 -144 +1% z=-27.9
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 15ms 14ms -5% z=-4.0
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-0.9
large-graph-pan: task duration 1232ms 1345ms +9% ⚠️ z=6.1
large-graph-pan: script duration 413ms 450ms +9% ⚠️ z=2.1
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.5 MB 63.9 MB +2%
large-graph-pan: DOM nodes -286 -283 -1% z=-182.7
large-graph-pan: event listeners -144 -144 +0% z=-179.9
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 8ms 8ms -5%
large-graph-zoom: style recalc duration 15ms 16ms +10%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 64 -2%
large-graph-zoom: task duration 1479ms 1591ms +8%
large-graph-zoom: script duration 521ms 549ms +5%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 57.4 MB 60.5 MB +6%
large-graph-zoom: DOM nodes -287 -289 +1%
large-graph-zoom: event listeners -148 -148 +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 7ms 9ms +29% z=-1.2
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 9 +6% z=-1.6
minimap-idle: task duration 665ms 743ms +12% ⚠️ z=4.5
minimap-idle: script duration 92ms 121ms +32% ⚠️ z=2.3
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 64.7 MB 65.9 MB +2%
minimap-idle: DOM nodes -283 -284 +0% z=-221.3
minimap-idle: event listeners -144 -145 +1% z=-226.5
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 9ms 13ms +38% z=-0.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 45 47 +3% z=-2.5
subgraph-dom-widget-clipping: task duration 389ms 435ms +12% ⚠️ z=3.1
subgraph-dom-widget-clipping: script duration 120ms 126ms +5% z=-0.4
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 53.4 MB 53.7 MB +1%
subgraph-dom-widget-clipping: DOM nodes 16 19 +19% z=-2.8
subgraph-dom-widget-clipping: event listeners 6 8 +33% z=-1.4
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 7ms 10ms +32% z=-1.0
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 +0% z=-1.4
subgraph-idle: task duration 498ms 487ms -2% ⚠️ z=3.7
subgraph-idle: script duration 13ms 15ms +14% z=-1.9
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 44.8 MB 56.6 MB +26%
subgraph-idle: DOM nodes -279 20 -107% z=-1.2
subgraph-idle: event listeners -148 4 -103% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.8
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 4ms 5ms +12% z=0.2
subgraph-mouse-sweep: style recalc duration 35ms 39ms +11% z=-1.2
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 77 +2% z=-1.9
subgraph-mouse-sweep: task duration 769ms 801ms +4% z=0.5
subgraph-mouse-sweep: script duration 85ms 99ms +18% z=-0.2
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 47.8 MB 60.5 MB +27%
subgraph-mouse-sweep: DOM nodes -278 63 -123% z=-1.8
subgraph-mouse-sweep: event listeners -148 4 -103% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +1%
subgraph-transition-enter: layout duration 13ms 12ms -4%
subgraph-transition-enter: style recalc duration 30ms 30ms +3%
subgraph-transition-enter: layout count 14 14 +0%
subgraph-transition-enter: style recalc count 18 18 +0%
subgraph-transition-enter: task duration 895ms 940ms +5%
subgraph-transition-enter: script duration 30ms 35ms +20%
subgraph-transition-enter: TBT 122ms 131ms +7%
subgraph-transition-enter: heap used 81.8 MB 93.5 MB +14%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2371 2371 +0%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms -1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 40ms 38ms -4%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 249 250 +0%
viewport-pan-sweep: task duration 4220ms 4810ms +14%
viewport-pan-sweep: script duration 1287ms 1493ms +16%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 66.4 MB 67.6 MB +2%
viewport-pan-sweep: DOM nodes -281 -281 +0%
viewport-pan-sweep: event listeners -128 -127 -1%
vue-large-graph-idle: avg frame time 18ms 18ms +2%
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 17286ms 17432ms +1%
vue-large-graph-idle: script duration 536ms 603ms +12%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 158.8 MB 165.5 MB +4%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16385 -16389 +0%
vue-large-graph-pan: avg frame time 18ms 18ms +0%
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 19ms 20ms +4%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 148 144 -3%
vue-large-graph-pan: task duration 21300ms 21052ms -1%
vue-large-graph-pan: script duration 900ms 933ms +4%
vue-large-graph-pan: TBT 277ms 235ms -15%
vue-large-graph-pan: heap used 159.0 MB 152.3 MB -4%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16381 -16382 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=1.1
workflow-execution: p95 frame time 17ms 17ms -0%
workflow-execution: layout duration 1ms 1ms -55% z=-6.1
workflow-execution: style recalc duration 23ms 16ms -29% z=-3.7
workflow-execution: layout count 4 3 -25% z=-3.6
workflow-execution: style recalc count 13 10 -27% z=-4.0
workflow-execution: task duration 121ms 100ms -17% z=-2.1
workflow-execution: script duration 9ms 9ms -10% z=-6.9
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 48.7 MB 57.8 MB +19%
workflow-execution: DOM nodes 119 117 -2% z=-6.2
workflow-execution: event listeners 65 49 -25% z=-0.7
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-07-31T21:41:49.469Z",
  "gitSha": "bd3a122423887d4889c34145c8b776f559bbbb44",
  "branch": "matt/fe-1466-jobs-fetch-error-noise",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2161.9210000000066,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.774000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 602.152,
      "heapDeltaBytes": 5257292,
      "heapUsedBytes": 73186888,
      "domNodes": 16,
      "jsHeapTotalBytes": 20049920,
      "scriptDurationMs": 18.258,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-idle",
      "durationMs": 2028.7080000000515,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.805,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 494.28,
      "heapDeltaBytes": 4885608,
      "heapUsedBytes": 72837312,
      "domNodes": 16,
      "jsHeapTotalBytes": 20312064,
      "scriptDurationMs": 20.316000000000003,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1923.101000000031,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 46.32,
      "layouts": 12,
      "layoutDurationMs": 3.8019999999999996,
      "taskDurationMs": 942.0580000000001,
      "heapDeltaBytes": -16132060,
      "heapUsedBytes": 51857252,
      "domNodes": -279,
      "jsHeapTotalBytes": 20176896,
      "scriptDurationMs": 129.484,
      "eventListeners": -146,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1878.6779999999226,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 40.908,
      "layouts": 12,
      "layoutDurationMs": 3.444,
      "taskDurationMs": 952.5360000000001,
      "heapDeltaBytes": -16066272,
      "heapUsedBytes": 51825728,
      "domNodes": -278,
      "jsHeapTotalBytes": 21487616,
      "scriptDurationMs": 137.578,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1738.8479999999618,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.679,
      "layouts": 6,
      "layoutDurationMs": 0.629,
      "taskDurationMs": 389.495,
      "heapDeltaBytes": 7972992,
      "heapUsedBytes": 75777440,
      "domNodes": 77,
      "jsHeapTotalBytes": 20312064,
      "scriptDurationMs": 20.145999999999997,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1676.9460000000436,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.386,
      "layouts": 6,
      "layoutDurationMs": 0.5369999999999999,
      "taskDurationMs": 370.601,
      "heapDeltaBytes": 7959096,
      "heapUsedBytes": 75773724,
      "domNodes": 78,
      "jsHeapTotalBytes": 20312064,
      "scriptDurationMs": 18.041,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 594.064000000003,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.782000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 386.255,
      "heapDeltaBytes": -11485200,
      "heapUsedBytes": 56178848,
      "domNodes": 18,
      "jsHeapTotalBytes": 21622784,
      "scriptDurationMs": 62.114000000000004,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 625.5400000000009,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 9.933,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 401.519,
      "heapDeltaBytes": -11694584,
      "heapUsedBytes": 56304956,
      "domNodes": 22,
      "jsHeapTotalBytes": 21622784,
      "scriptDurationMs": 61.318999999999996,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2044.132999999988,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.407,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 750.0009999999999,
      "heapDeltaBytes": 8139700,
      "heapUsedBytes": 67374708,
      "domNodes": -283,
      "jsHeapTotalBytes": 5042176,
      "scriptDurationMs": 124.313,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2042.6009999999906,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.169999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 738.337,
      "heapDeltaBytes": 7700872,
      "heapUsedBytes": 66399960,
      "domNodes": -280,
      "jsHeapTotalBytes": 3993600,
      "scriptDurationMs": 120.076,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2228.9670000000115,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 13.736000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1341.2640000000001,
      "heapDeltaBytes": 6333708,
      "heapUsedBytes": 66194312,
      "domNodes": -282,
      "jsHeapTotalBytes": 5005312,
      "scriptDurationMs": 449.99100000000004,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2193.4289999999237,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 14.498000000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1348.761,
      "heapDeltaBytes": 7136868,
      "heapUsedBytes": 67717868,
      "domNodes": -283,
      "jsHeapTotalBytes": 4743168,
      "scriptDurationMs": 449.30400000000003,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3315.19899999995,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 19.474,
      "layouts": 60,
      "layoutDurationMs": 7.711,
      "taskDurationMs": 1594.468,
      "heapDeltaBytes": 3856148,
      "heapUsedBytes": 65390564,
      "domNodes": -289,
      "jsHeapTotalBytes": 7925760,
      "scriptDurationMs": 548.964,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3232.6170000000047,
      "styleRecalcs": 63,
      "styleRecalcDurationMs": 12.835999999999997,
      "layouts": 60,
      "layoutDurationMs": 7.433000000000001,
      "taskDurationMs": 1588.072,
      "heapDeltaBytes": -548872,
      "heapUsedBytes": 61588984,
      "domNodes": -288,
      "jsHeapTotalBytes": 8450048,
      "scriptDurationMs": 549.3520000000001,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2066.49299999998,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.396,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 743.1940000000002,
      "heapDeltaBytes": 8397148,
      "heapUsedBytes": 68900920,
      "domNodes": -283,
      "jsHeapTotalBytes": 3731456,
      "scriptDurationMs": 121.30300000000003,
      "eventListeners": -146,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2037.898000000041,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.819999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 741.8169999999999,
      "heapDeltaBytes": 8486324,
      "heapUsedBytes": 69208984,
      "domNodes": -284,
      "jsHeapTotalBytes": 5042176,
      "scriptDurationMs": 120.688,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 662.2560000000135,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 14.842,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 456,
      "heapDeltaBytes": -12057980,
      "heapUsedBytes": 55963772,
      "domNodes": 20,
      "jsHeapTotalBytes": 21884928,
      "scriptDurationMs": 128.248,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 610.4709999999614,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.257,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 414.531,
      "heapDeltaBytes": -11494944,
      "heapUsedBytes": 56578920,
      "domNodes": 18,
      "jsHeapTotalBytes": 22147072,
      "scriptDurationMs": 123.389,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2005.2840000000174,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.451,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 462.45000000000005,
      "heapDeltaBytes": 4322980,
      "heapUsedBytes": 72395280,
      "domNodes": 20,
      "jsHeapTotalBytes": 20836352,
      "scriptDurationMs": 14.946,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2013.9840000000504,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.796,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 512.143,
      "heapDeltaBytes": -21674764,
      "heapUsedBytes": 46222796,
      "domNodes": 20,
      "jsHeapTotalBytes": 20439040,
      "scriptDurationMs": 15.525,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1759.034999999983,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 38.492,
      "layouts": 16,
      "layoutDurationMs": 4.849,
      "taskDurationMs": 821.22,
      "heapDeltaBytes": -4289972,
      "heapUsedBytes": 63408044,
      "domNodes": 63,
      "jsHeapTotalBytes": 20836352,
      "scriptDurationMs": 104.003,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1722.8289999999333,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 38.64,
      "layouts": 16,
      "layoutDurationMs": 4.681,
      "taskDurationMs": 781.735,
      "heapDeltaBytes": -4591428,
      "heapUsedBytes": 63482880,
      "domNodes": 63,
      "jsHeapTotalBytes": 21098496,
      "scriptDurationMs": 94.774,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1399.8559999999998,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 30.32399999999999,
      "layouts": 14,
      "layoutDurationMs": 12.473,
      "taskDurationMs": 939.8329999999997,
      "heapDeltaBytes": 30990008,
      "heapUsedBytes": 97990396,
      "domNodes": 13673,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 35.346000000000004,
      "eventListeners": 2371,
      "totalBlockingTimeMs": 131,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8661.821999999973,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 37.967,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4859.789,
      "heapDeltaBytes": 12464204,
      "heapUsedBytes": 71496856,
      "domNodes": -282,
      "jsHeapTotalBytes": 8118272,
      "scriptDurationMs": 1533.4270000000001,
      "eventListeners": -128,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8450.449999999932,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 38.92999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4760.796,
      "heapDeltaBytes": 11082516,
      "heapUsedBytes": 70203024,
      "domNodes": -280,
      "jsHeapTotalBytes": 7331840,
      "scriptDurationMs": 1452.871,
      "eventListeners": -126,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17466.501999999993,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17421.984,
      "heapDeltaBytes": -35219216,
      "heapUsedBytes": 167791724,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14360576,
      "scriptDurationMs": 601.1229999999999,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17496.64100000007,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17442.317,
      "heapDeltaBytes": -33904656,
      "heapUsedBytes": 179333348,
      "domNodes": -8312,
      "jsHeapTotalBytes": -10391552,
      "scriptDurationMs": 604.138,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.333333333333332,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21074.430000000008,
      "styleRecalcs": 141,
      "styleRecalcDurationMs": 21.158999999999985,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 21010.597999999998,
      "heapDeltaBytes": -66541464,
      "heapUsedBytes": 153919436,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14094336,
      "scriptDurationMs": 965.2719999999999,
      "eventListeners": -16381,
      "totalBlockingTimeMs": 207,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21158.343999999943,
      "styleRecalcs": 146,
      "styleRecalcDurationMs": 18.967999999999986,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 21094.173,
      "heapDeltaBytes": -42629176,
      "heapUsedBytes": 165443996,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15933440,
      "scriptDurationMs": 900.673,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 263,
      "frameDurationMs": 17.77333333333336,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 106.83099999999968,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 12.636,
      "layouts": 3,
      "layoutDurationMs": 0.7070000000000002,
      "taskDurationMs": 84.625,
      "heapDeltaBytes": 3267244,
      "heapUsedBytes": 70305264,
      "domNodes": 115,
      "jsHeapTotalBytes": 3145728,
      "scriptDurationMs": 7.2730000000000015,
      "eventListeners": 33,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 459.98499999996056,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 19.413,
      "layouts": 3,
      "layoutDurationMs": 0.609,
      "taskDurationMs": 115.761,
      "heapDeltaBytes": -15998988,
      "heapUsedBytes": 50932764,
      "domNodes": 119,
      "jsHeapTotalBytes": 7467008,
      "scriptDurationMs": 9.754000000000001,
      "eventListeners": 65,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    }
  ]
}

@mattmillerai
mattmillerai marked this pull request as ready for review July 31, 2026 21:02
@mattmillerai
mattmillerai requested a review from a team July 31, 2026 21:02
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Jul 31, 2026
@mattmillerai mattmillerai added the agent-coded Opened by the agent-work code loop label Jul 31, 2026
@dosubot

dosubot Bot commented Jul 31, 2026

Copy link
Copy Markdown

📄 Knowledge review

Dosu skipped reviewing this PR because your organization has used its 200 included credits for the month. Your usage will reset on 2026-08-01. To have Dosu review this PR before then, ask your organization admin to upgrade to a pro account.


Leave Feedback Ask Dosu about ComfyUI_frontend Add Dosu to your team

@mattmillerai mattmillerai added the cursor-review Trigger multi-model Cursor agent review on this PR label Jul 31, 2026
@mattmillerai

Copy link
Copy Markdown
Contributor Author

Verification note: a whole-repo vitest run on this branch finished with 14,158 passing and 1 failing test across 24 file-level errors. I could not attribute those without a same-machine baseline run on main (out of time budget), and they are not in the areas this change touches — the scoped run over src/platform/remote/comfyui/jobs, src/platform/missingMedia, src/stores/queueStore.test.ts, src/services/jobOutputCache.test.ts and src/utils is fully green (50 files / 953 tests), as are typecheck, lint, format and knip. CI's run against the merge base is the authoritative signal here.

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔍 Cursor Review — Consolidated panel

Triggered by @mattmillerai.

Found 5 finding(s).

Severity Count
🟠 High 1
🟡 Medium 2
🟢 Low 2

Panel: 8/8 reviewers contributed findings.

Comment thread src/platform/remote/comfyui/jobs/fetchJobs.ts
Comment thread src/platform/remote/comfyui/jobs/fetchJobs.ts
Comment thread src/utils/pageTeardownUtil.ts Outdated
Comment thread src/utils/pageTeardownUtil.ts Outdated
Comment thread src/platform/remote/comfyui/jobs/fetchJobs.ts
@codecov

codecov Bot commented Jul 31, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@            Coverage Diff             @@
##             main   #14507      +/-   ##
==========================================
- Coverage   79.35%   79.31%   -0.04%     
==========================================
  Files        1767     1768       +1     
  Lines      113935   114034      +99     
  Branches    35819    36653     +834     
==========================================
+ Hits        90414    90448      +34     
- Misses      22978    23043      +65     
  Partials      543      543              
Flag Coverage Δ
unit 70.23% <100.00%> (+0.01%) ⬆️

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

Files with missing lines Coverage Δ
src/platform/remote/comfyui/jobs/fetchJobs.ts 100.00% <100.00%> (ø)
src/utils/pageTeardownUtil.ts 100.00% <100.00%> (ø)

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

Address review: a persisted `pagehide` is a back/forward-cache freeze, not a
discard, so aborting there cancelled a poll on a page that keeps running and
settled an empty snapshot over the queue. Re-mint the controller on `pageshow`
rather than immediately after the abort, guard the listener registration for
non-DOM contexts, and extend the same teardown handling to `fetchJobDetail`.
@mattmillerai

Copy link
Copy Markdown
Contributor Author

🤖 The reviews loop filed Linear follow-up ticket(s) for review thread(s) deferred as out of scope for this PR:

  • BE-5680 — Propagate cancelled jobs requests instead of returning an empty result set — filed as agent-spike (premise unverified)

The following carry agent-spike instead of agent-ok because their reachability claim was not backed by evidence (BE-5378) — the claim is investigated before any code is written, and "the premise does not hold" is a valid, successful outcome:

  • Propagate cancelled jobs requests instead of returning an empty result set — no reachability block in the proposal

@christian-byrne christian-byrne 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.

Can you reconcile this was other OPEN PRs on the repo with similar approach/intent? In general, reporting of errors should not incite us to remove the reporting but rather address the bug.

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

Labels

agent-coded Opened by the agent-work code loop cursor-review Trigger multi-model Cursor agent review on this PR size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants