Skip to content

fix(assets): keep native video control clicks off card selection (FE-1711) - #15541

Open
mattmillerai wants to merge 2 commits into
mainfrom
matt/fe-1711-video-controls-modifier-click
Open

fix(assets): keep native video control clicks off card selection (FE-1711)#15541
mattmillerai wants to merge 2 commits into
mainfrom
matt/fe-1711-video-controls-modifier-click

Conversation

@mattmillerai

Copy link
Copy Markdown
Contributor

ELI-5

When a video card is playing and you hover it, the browser draws its own play/scrub bar over the bottom of the card. Clicking that bar was also being counted as clicking the card, so a Cmd-click on the play button could quietly toggle the card's selection at the same time. Now a click that lands on the control bar stays with the control bar; clicking anywhere else on the video still selects the card as before.

Description

onVideoClick already returned early while native controls were showing, but an early return does not stop propagation, and #14765 removed the @click.stop that used to contain it. The click continued to MediaAssetCard's @click.stop="handlePreviewClick", which treats a modifier-click on a video as a selection gesture — so one click both actuated the control and mutated selection, with the selection change hidden under the control bar.

The fix stops the event only when the pointer is over the control strip. Every other click keeps bubbling, so the modifier-select behaviour #14765 / FE-1512 added on the video card body is untouched.

Native controls live in user-agent shadow DOM, and I confirmed there is no DOM-level signal to key off: for a control-bar click and a body click, WebKit reports the identical target (VIDEO), the identical composedPath() (length 6, no shadow nodes), and video.shadowRoot === null. Position is the only available discriminator, hence the pixel constant. It is clamped to half the video height so it cannot swallow a small card whole.

How has this been tested?

Unit (vitest run src/platform/assets/components/MediaVideoTop.test.ts): 10 passed, 0 failed. Two new cases; verified red-then-green — with the component change stashed the strip case fails (1 failed / 9 passed), with it applied all 10 pass.

Because happy-dom has no native-controls shadow DOM, I also measured the real behaviour with Playwright's bundled engines (headed, a <video controls> inside a click-listening wrapper, sweeping click Y from the element's bottom edge upward). Results:

Engine Does a control-strip click reach the page? Control strip extent (260px-tall video)
Chromium 1234 No — swallowed by the UA controls ~bottom 64px
WebKit Yes — bubbles to the wrapper ~bottom 7–38px
Firefox No — the UA widget consumes every click on the video n/a

So the reported defect reproduces in WebKit/Safari, and does not reproduce in Chromium or Firefox. That is worth stating plainly because it changes the risk calculus for the fix: the ticket's suggested one-liner (if (shouldShowControls.value) return event.stopPropagation()) would have been inert against the actual bug in Chromium while regressing Chromium's working Cmd-click-to-select on the video body — the exact regression the ticket warns against. Stopping only over the strip is inert in Chromium and Firefox (no event arrives from that band in either) and is the whole fix in WebKit.

I did not do the manual grid-mode pass the ticket asks for — no ComfyUI backend was available in this environment to populate the asset browser with a playing video — so the two manual assertions are covered by the engine measurements plus the unit tests rather than by driving the real card. grid-small needs no check: it passes show-native-video-controls=false, so shouldShowControls is never true there and the new branch cannot run.

Not run: pnpm typecheck and pnpm lint repo-wide (multi-minute on this repo; the checkout borrowed node_modules, which AGENTS.md notes makes vue-tsc unreliable). CI covers both. pnpm format (oxfmt) was run on both changed files.

Judgment calls and residuals

  • The 48px constant is a heuristic. It has to cover WebKit's bar (~38px including its bottom inset) and is sized to also match Chromium's panel, where it is inert. If a future Safari renders a taller bar, the guard under-covers and the old behaviour returns for the uncovered band; it never over-stops beyond half the video's height.
  • Unfixed, same family, in Chromium: a Cmd-click on the body of a playing video both toggles playback (Chromium's own click-to-play-pause on <video controls>) and toggles card selection — measured, pausedAfter flips on the same click that selects. That is also "two unrelated effects from one click", it lives in the same component, and this PR deliberately does not touch it because suppressing it is precisely the modifier-select regression fix(assets): correct video asset interactions #14765 fixed. It needs a product decision, not a propagation tweak, so the tracking issue stays open rather than being auto-closed by this PR.
  • No E2E test added. A Playwright spec could assert this in WebKit, but the repo's browser tests run against Chromium, where the defect does not reproduce — the test would pass without the fix.

Refs FE-1711 (intentionally not a closing keyword: see the unfixed Chromium body-click case above).

Provenance

  • Authored by: agent-work loop
  • Verified: vitest src/platform/assets/components/MediaVideoTop.test.ts: 10 passed, 0 failed (red-then-green confirmed: 1 failed with the fix stashed); oxfmt on both changed files: clean; Playwright engine measurement across chromium/webkit/firefox as tabled above
  • Deviations: the ticket's manual grid-mode pass was not performed (no backend available); its premise that the defect is live on Chromium is falsified above, and the suggested one-line scope was not taken because it would regress Chromium modifier-select

…1711)

A click on a video card's native control bar reaches the page in WebKit with the same target and composed path as a click on the video itself, so the card read it as a selection gesture on top of the control the user actually pressed. Stop the event when the pointer is over the control strip, and keep every other click bubbling so modifier-select still works on a playing card.

Co-Authored-By: Christian Byrne <cbyrne@comfy.org>
@mattmillerai mattmillerai added agent-coded Opened by the agent-work code loop cursor-review Trigger multi-model Cursor agent review on this PR labels Aug 21, 2026
@mattmillerai
mattmillerai marked this pull request as ready for review August 21, 2026 08:13
@mattmillerai
mattmillerai requested a review from a team August 21, 2026 08:13
@coderabbitai

coderabbitai Bot commented Aug 21, 2026

Copy link
Copy Markdown
Contributor

Important

Approval pending

CodeRabbit has no unresolved comments, but it has not reviewed the latest commit.

Use the checkbox below to review the latest commit. CodeRabbit will approve the changes if it finds no blocking issues.

  • 🔍 Trigger review

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

@dosubot dosubot Bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Aug 21, 2026
@github-actions

github-actions Bot commented Aug 21, 2026

Copy link
Copy Markdown

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

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

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/21/2026, 08:32:43 AM UTC

Links

📦 Bundle: 9.13 MB gzip 🔴 +106 B

Details

Summary

  • Raw size: 38.7 MB baseline 38.7 MB — 🔴 +472 B
  • Gzip: 9.13 MB baseline 9.13 MB — 🔴 +106 B
  • Brotli: 6.39 MB baseline 6.38 MB — 🔴 +162 B
  • Bundles: 440 current • 440 baseline • 147 added / 147 removed

Category Glance
Other 🔴 +472 B (14.2 MB) · Vendor & Third-Party ⚪ 0 B (18.1 MB) · Data & Services ⚪ 0 B (3.53 MB) · Graph Workspace ⚪ 0 B (1.37 MB) · Panels & Settings ⚪ 0 B (566 kB) · Utilities & Hooks ⚪ 0 B (549 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-ChxWSd_z.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.86 kB 🔴 +1.6 kB
assets/index-DP5KYiS3.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.86 kB 🟢 -1.6 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CvH3-oIO.js (removed) 1.37 MB 🟢 -1.37 MB 🟢 -298 kB 🟢 -224 kB
assets/GraphView-DS2fXEIe.js (new) 1.37 MB 🔴 +1.37 MB 🔴 +298 kB 🔴 +224 kB
assets/WidgetCompositor-ClnPwXUC.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.76 kB 🔴 +2.46 kB
assets/WidgetCompositor-XdkFU5Rd.js (removed) 8.17 kB 🟢 -8.17 kB 🟢 -2.76 kB 🟢 -2.46 kB

Status: 2 added / 2 removed / 1 unchanged

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-DojrCXhB.js (new) 25 kB 🔴 +25 kB 🔴 +6.25 kB 🔴 +5.53 kB
assets/CloudSurveyView-Dp0Qk-ih.js (removed) 25 kB 🟢 -25 kB 🟢 -6.25 kB 🟢 -5.53 kB
assets/CloudLayoutView-Br0YxTwA.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.57 kB 🔴 +5.74 kB
assets/CloudLayoutView-DkGNJXSr.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.57 kB 🟢 -5.75 kB
assets/UserCheckView-_zlOiNCn.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.91 kB
assets/UserCheckView-0O6GZdOM.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.91 kB
assets/CloudLoginView-azCSqyeA.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.56 kB 🟢 -2.25 kB
assets/CloudLoginView-DGNLE3-E.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.56 kB 🔴 +2.26 kB
assets/useCloudAuthPage-CQchoNPC.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.52 kB 🔴 +2.2 kB
assets/useCloudAuthPage-DidVgqo-.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.52 kB 🟢 -2.2 kB
assets/CloudSignupView-CB1flpRb.js (removed) 6.96 kB 🟢 -6.96 kB 🟢 -2.28 kB 🟢 -2 kB
assets/CloudSignupView-DEF9QyJK.js (new) 6.96 kB 🔴 +6.96 kB 🔴 +2.28 kB 🔴 +2 kB
assets/WidgetTextPreview-BFNXDIY8.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.9 kB
assets/WidgetTextPreview-BGf66Szc.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.9 kB
assets/CloudSubscriptionRedirectView-BVHaBGQC.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.97 kB
assets/CloudSubscriptionRedirectView-Dhs6DG8F.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.97 kB
assets/UserSelectView-C4n_KOid.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.96 kB 🔴 +1.72 kB
assets/UserSelectView-CiobNSou.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.96 kB 🟢 -1.72 kB
assets/CloudForgotPasswordView-AP7KlW7A.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.72 kB 🔴 +1.49 kB
assets/CloudForgotPasswordView-pbw1ZmR_.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudAuthTimeoutView-BlrqA1tf.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.35 kB
assets/CloudAuthTimeoutView-CLGEc7s-.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.33 kB
assets/OAuthLayoutView-5Rgvl9wW.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -702 B 🟢 -588 B
assets/OAuthLayoutView-jGt2JCV8.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +699 B 🔴 +587 B
assets/WidgetTextPreview-2Tl9WOdr.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +88 B
assets/WidgetTextPreview-Clwdf8AS.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -95 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CKRJRo5z.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.94 kB 🔴 +8.8 kB
assets/KeybindingPanel-R04vEIhc.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.95 kB 🟢 -8.78 kB
assets/SecretsPanel-BGaj6G-0.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.88 kB 🔴 +6.91 kB
assets/SecretsPanel-DoA1hr7C.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.88 kB 🟢 -6.9 kB
assets/CreditsPanel-CJ3Y3Iqt.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.21 kB 🔴 +2.81 kB
assets/CreditsPanel-DEoJR4B1.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.21 kB 🟢 -2.81 kB
assets/AboutPanel-CMSDJf9U.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.12 kB 🔴 +2.8 kB
assets/AboutPanel-LzwKFyXw.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.12 kB 🟢 -2.79 kB
assets/ExtensionPanel-C8fSNJAB.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.23 kB
assets/ExtensionPanel-Da9tbKO9.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.52 kB 🟢 -2.23 kB
assets/ServerConfigPanel-COQJ8sOF.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.72 kB
assets/ServerConfigPanel-ElD1w_Zt.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.94 kB 🔴 +1.72 kB
assets/UserPanel-BKE-O7jH.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/UserPanel-D34oLONf.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/refreshRemoteConfig-CAqcdjJ-.js (new) 4.24 kB 🔴 +4.24 kB 🔴 +1.51 kB 🔴 +1.34 kB
assets/refreshRemoteConfig-CeIaqwBG.js (removed) 4.24 kB 🟢 -4.24 kB 🟢 -1.51 kB 🟢 -1.34 kB
assets/cloudRemoteConfig-CCQLyAxw.js (removed) 951 B 🟢 -951 B 🟢 -515 B 🟢 -420 B
assets/cloudRemoteConfig-CxEAoBYU.js (new) 951 B 🔴 +951 B 🔴 +514 B 🔴 +420 B
assets/refreshRemoteConfig-B4LGMHvQ.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +84 B
assets/refreshRemoteConfig-BMFI35Bp.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -84 B

Status: 10 added / 10 removed / 16 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-CQt6ZURz.js (removed) 13.3 kB 🟢 -13.3 kB 🟢 -4.53 kB 🟢 -3.93 kB
assets/SignUpForm-D2nEZ_en.js (new) 13.3 kB 🔴 +13.3 kB 🔴 +4.53 kB 🔴 +3.93 kB
assets/auth-CoF1I2Nx.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.2 kB 🔴 +1.01 kB
assets/auth-CZ7SzrI8.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.2 kB 🟢 -1.01 kB
assets/UpdatePasswordContent-C5iN_5_R.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -844 B 🟢 -738 B
assets/UpdatePasswordContent-dUbzf-rN.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +844 B 🔴 +734 B
assets/authStore-B6Hhleze.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +105 B
assets/authStore-CUZ0XkRv.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -104 B
assets/workspaceAuthStore-B_XpijGO.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +108 B
assets/workspaceAuthStore-C4_efFjc.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -103 B
assets/auth-BHYr9rsG.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +89 B
assets/auth-CbsF2hw5.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -80 B

Status: 6 added / 6 removed / 5 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-BJbbJeUf.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/ComfyHubPublishDialog-Dcu1pbYT.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/useShareDialog-BoPdR0J5.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.69 kB 🔴 +5.04 kB
assets/useShareDialog-CQ6Iy9_R.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.7 kB 🟢 -5.04 kB
assets/feedbackDialog-Bo-H457z.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.87 kB 🔴 +1.59 kB
assets/feedbackDialog-Dw_oVfXf.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.87 kB 🟢 -1.59 kB
assets/useRangeEditor-B-v5FjV1.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.04 kB
assets/useRangeEditor-DNzbPBV5.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.03 kB
assets/useLayerEditor-5XVGiETp.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -491 B 🟢 -405 B
assets/useLayerEditor-DbmYqZGg.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +491 B 🔴 +407 B
assets/ComfyHubPublishDialog-CH3Plzg4.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +91 B
assets/ComfyHubPublishDialog-DN2sRhML.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/useSubscriptionDialog-C0J-9T12.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +89 B
assets/useSubscriptionDialog-D4LFRlHK.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -90 B

Status: 7 added / 7 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-DOTW8O9O.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.97 kB 🔴 +3.53 kB
assets/ComfyQueueButton-DZk5tTE0.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.97 kB 🟢 -3.53 kB
assets/useTerminalTabs-DXz_eanI.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.28 kB
assets/useTerminalTabs-TX4ry3zo.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.28 kB
assets/InviteMembersForm-C7q1f2Os.js (new) 8.23 kB 🔴 +8.23 kB 🔴 +2.74 kB 🔴 +2.44 kB
assets/InviteMembersForm-Dal2YuyO.js (removed) 8.23 kB 🟢 -8.23 kB 🟢 -2.74 kB 🟢 -2.43 kB
assets/SubscribeButton-C0zsNMI2.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +970 B 🔴 +850 B
assets/SubscribeButton-CWGK1ccK.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -971 B 🟢 -850 B
assets/cloudFeedbackTopbarButton-CU7c-dNh.js (new) 705 B 🔴 +705 B 🔴 +422 B 🔴 +360 B
assets/cloudFeedbackTopbarButton-ueSKGK5F.js (removed) 705 B 🟢 -705 B 🟢 -423 B 🟢 -362 B
assets/ComfyQueueButton-DqMfULqh.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -94 B
assets/ComfyQueueButton-DTXMNBUs.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +92 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.53 MB (baseline 3.53 MB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-CQZpqDPJ.js (removed) 3.16 MB 🟢 -3.16 MB 🟢 -742 kB 🟢 -558 kB
assets/settingStore-DKyFM-Sq.js (new) 3.16 MB 🔴 +3.16 MB 🔴 +742 kB 🔴 +558 kB
assets/api-CpHkWbnU.js (new) 186 kB 🔴 +186 kB 🔴 +39.8 kB 🔴 +33.3 kB
assets/api-tHQrzSYo.js (removed) 186 kB 🟢 -186 kB 🟢 -39.8 kB 🟢 -33.3 kB
assets/load3dService-BEkk-Iwe.js (new) 131 kB 🔴 +131 kB 🔴 +29.2 kB 🔴 +24.6 kB
assets/load3dService-C2lkD3dc.js (removed) 131 kB 🟢 -131 kB 🟢 -29.2 kB 🟢 -24.6 kB
assets/workflowShareService-DTjWVoc3.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.92 kB 🔴 +4.34 kB
assets/workflowShareService-zzebZM-l.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.34 kB
assets/keybindingService-C3sVsgIl.js (removed) 6.95 kB 🟢 -6.95 kB 🟢 -1.74 kB 🟢 -1.51 kB
assets/keybindingService-munodxkW.js (new) 6.95 kB 🔴 +6.95 kB 🔴 +1.74 kB 🔴 +1.51 kB
assets/releaseStore-Bc6tfpqX.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/releaseStore-Bz-JRLtM.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.77 kB
assets/systemStatsStore-B7Z8noyF.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/systemStatsStore-D2jLlbJb.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/userStore-BycSh4nh.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -898 B 🟢 -796 B
assets/userStore-fjJN4aEJ.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +898 B 🔴 +795 B
assets/audioService-BNSE9Ys5.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -828 B 🟢 -723 B
assets/audioService-HAdYdEZr.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +829 B 🔴 +722 B
assets/dialogService-BHwHQCu-.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +76 B
assets/dialogService-ViwLDoJx.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -82 B
assets/releaseStore-Be0hr1G_.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +87 B
assets/releaseStore-Ckhu5a52.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -86 B
assets/settingStore-D1FlvfC_.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +87 B
assets/settingStore-xif47qJ5.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -77 B
assets/assetsStore-CZSm11lR.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -85 B
assets/assetsStore-jkbvWrS_.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +84 B
assets/api-DF65d8HY.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-DJ_7UMWG.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -64 B

Status: 14 added / 14 removed / 3 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-CpS34cCO.js (removed) 236 kB 🟢 -236 kB 🟢 -53.1 kB 🟢 -43.2 kB
assets/useConflictDetection-rjXCZiB5.js (new) 236 kB 🔴 +236 kB 🔴 +53.1 kB 🔴 +43.2 kB
assets/useLayerEditorSession-DA760T1w.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLayerEditorSession-DcwvcTDs.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLoad3d-33yNF8da.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.14 kB
assets/useLoad3d-CmZJ4lic.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.14 kB
assets/useLoad3dViewer-C-C121ps.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.36 kB
assets/useLoad3dViewer-mdORNPjQ.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.37 kB
assets/useImageCrop--niVhwRl.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useImageCrop-5fYBOoSj.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useDowngradeToPersonal-BPxdadBj.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.74 kB 🔴 +2.35 kB
assets/useDowngradeToPersonal-CGEKOX2r.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.74 kB 🟢 -2.35 kB
assets/useFeatureFlags-8FYYwaJN.js (removed) 7.25 kB 🟢 -7.25 kB 🟢 -2.05 kB 🟢 -1.76 kB
assets/useFeatureFlags-dI9ffooY.js (new) 7.25 kB 🔴 +7.25 kB 🔴 +2.05 kB 🔴 +1.74 kB
assets/useCompositorLayers-B6HUA9pH.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +898 B 🔴 +805 B
assets/useCompositorLayers-DpPNeQ5I.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -899 B 🟢 -809 B
assets/assetPreviewUtil-BR7CgbKK.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -969 B 🟢 -846 B
assets/assetPreviewUtil-fR0AbspI.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +968 B 🔴 +846 B
assets/useUpstreamValue-D2LwPECF.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -760 B 🟢 -684 B
assets/useUpstreamValue-DllfABnm.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +759 B 🔴 +685 B
assets/useWorkspaceTierLabel-iJMSCsCZ.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +816 B 🔴 +697 B
assets/useWorkspaceTierLabel-LkzhSL-3.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -814 B 🟢 -698 B
assets/subscriptionCheckoutUtil-BZJrE-Nu.js (new) 877 B 🔴 +877 B 🔴 +523 B 🔴 +454 B
assets/subscriptionCheckoutUtil-DOfcT8R9.js (removed) 877 B 🟢 -877 B 🟢 -524 B 🟢 -433 B
assets/useSessionCookie-BwMymmTO.js (new) 652 B 🔴 +652 B 🔴 +336 B 🔴 +293 B
assets/useSessionCookie-k5LRPZZE.js (removed) 652 B 🟢 -652 B 🟢 -336 B 🟢 -293 B
assets/useLoad3d-BloB_FAJ.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -148 B
assets/useLoad3d-MwuqyNDp.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +148 B
assets/useSessionCookie-ByOEgHpI.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +84 B
assets/useSessionCookie-DA1Ife4r.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -83 B
assets/useFeatureFlags-CPuf6WLb.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -85 B
assets/useFeatureFlags-CSYJOCDQ.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +80 B
assets/useLoad3dViewer-BhH50iYT.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -83 B
assets/useLoad3dViewer-DPPz4gCP.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +88 B
assets/useCurrentUser-Cq_agR3q.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -82 B
assets/useCurrentUser-CroiqauU.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +94 B

Status: 18 added / 18 removed / 19 unchanged

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

External libraries and shared vendor chunks

Status: 18 unchanged

Other — 14.2 MB (baseline 14.2 MB) • 🔴 +472 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-Cs_08TH_.js (removed) 115 kB 🟢 -115 kB 🟢 -30 kB 🟢 -25.3 kB
assets/core-XN75TaW4.js (new) 115 kB 🔴 +115 kB 🔴 +30 kB 🔴 +25.3 kB
assets/WidgetSelect-aY1UVauy.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-DUutMipG.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/SubscriptionPanelContentWorkspace-Gt4W7ezH.js (removed) 81.2 kB 🟢 -81.2 kB 🟢 -16.1 kB 🟢 -13.9 kB
assets/SubscriptionPanelContentWorkspace-HkWN13PL.js (new) 81.2 kB 🔴 +81.2 kB 🔴 +16.1 kB 🔴 +13.9 kB
assets/Load3D-CVnR2eJt.js (removed) 73.3 kB 🟢 -73.3 kB 🟢 -12.1 kB 🟢 -10.3 kB
assets/Load3D-DIWbClI2.js (new) 73.3 kB 🔴 +73.3 kB 🔴 +12.1 kB 🔴 +10.3 kB
assets/WidgetVideoEdit-99-oVGJk.js (removed) 71.2 kB 🟢 -71.2 kB 🟢 -17 kB 🟢 -14.9 kB
assets/WidgetVideoEdit-DKYL2RKX.js (new) 71.2 kB 🔴 +71.2 kB 🔴 +17 kB 🔴 +14.9 kB
assets/SubscriptionTransitionPreviewWorkspace-CYpcJKuP.js (removed) 66.4 kB 🟢 -66.4 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-DKZbbyxb.js (new) 66.4 kB 🔴 +66.4 kB 🔴 +13.4 kB 🔴 +11.7 kB
assets/WorkspaceSettingsPanelContent-HIyAqmbk.js (removed) 58.2 kB 🟢 -58.2 kB 🟢 -12.4 kB 🟢 -10.8 kB
assets/WorkspaceSettingsPanelContent-Vd-vlUvn.js (new) 58.2 kB 🔴 +58.2 kB 🔴 +12.4 kB 🔴 +10.8 kB
assets/Preview3d-BByIMoQX.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.32 kB 🔴 +7.25 kB
assets/Preview3d-BTKJYKgp.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.32 kB 🟢 -7.24 kB
assets/main-SoELfXV_.js (new) 47.4 kB 🔴 +47.4 kB 🔴 +13.7 kB 🔴 +11.9 kB
assets/main-VoxD4noT.js (removed) 47.4 kB 🟢 -47.4 kB 🟢 -13.7 kB 🟢 -11.9 kB
assets/SubscriptionRequiredDialogContentUnified-DYy_nNGR.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.39 kB 🔴 +8.18 kB
assets/SubscriptionRequiredDialogContentUnified-tyY6u4lI.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.39 kB 🟢 -8.18 kB
assets/LayerEditorContent-BiQlRxfh.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.62 kB 🔴 +8.43 kB
assets/LayerEditorContent-DFWywjvH.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.62 kB 🟢 -8.43 kB
assets/WidgetBoundingBoxes-CHhHaG31.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.12 kB
assets/WidgetBoundingBoxes-V8AZbrmD.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.12 kB
assets/WidgetPainter-DCTo0GQv.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.88 kB 🟢 -6.97 kB
assets/WidgetPainter-XtHif5X_.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.87 kB 🔴 +6.98 kB
assets/Load3dViewerContent-C6225evy.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.45 kB
assets/Load3dViewerContent-d4Z90Auz.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.28 kB 🟢 -5.45 kB
assets/SubscriptionRequiredDialogContent-DnJZwTHQ.js (new) 26.9 kB 🔴 +26.9 kB 🔴 +6.36 kB 🔴 +5.59 kB
assets/SubscriptionRequiredDialogContent-TeKmEhGl.js (removed) 26.9 kB 🟢 -26.9 kB 🟢 -6.36 kB 🟢 -5.61 kB
assets/SubscriptionRequiredDialogContentWorkspace-BinY0oVU.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.81 kB 🟢 -5.12 kB
assets/SubscriptionRequiredDialogContentWorkspace-BSBNZdff.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.81 kB 🔴 +5.12 kB
assets/CreditsTile-BZERFirX.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.66 kB 🟢 -5.85 kB
assets/CreditsTile-SxEwRrAj.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.66 kB 🔴 +5.85 kB
assets/load3d-3UgxoMWP.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.41 kB 🟢 -4.67 kB
assets/load3d-DtLv32Qw.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.41 kB 🔴 +4.68 kB
assets/SignInContent-DB5yvt4e.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.18 kB 🔴 +4.54 kB
assets/SignInContent-Dhnd4jhU.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.18 kB 🟢 -4.54 kB
assets/WidgetRecordAudio-g2W_M7K0.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-lUDqhvCJ.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.1 kB
assets/CurrentUserPopoverWorkspace-BzvdDKwX.js (removed) 15.8 kB 🟢 -15.8 kB 🟢 -3.87 kB 🟢 -3.42 kB
assets/CurrentUserPopoverWorkspace-CZrzJCjS.js (new) 15.8 kB 🔴 +15.8 kB 🔴 +3.86 kB 🔴 +3.41 kB
assets/WidgetInputNumber-DbX9Wsdz.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.22 kB
assets/WidgetInputNumber-uuYYaUDJ.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.22 kB
assets/WidgetRange-BYYUTJvW.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.13 kB
assets/WidgetRange-C1y69sB3.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.55 kB 🔴 +3.12 kB
assets/WaveAudioPlayer-ChdIfYey.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.03 kB
assets/WaveAudioPlayer-D3acDVRb.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.03 kB
assets/WidgetCurve-B2PDDjLF.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.47 kB 🔴 +3.14 kB
assets/WidgetCurve-Tl8bPyvC.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.48 kB 🟢 -3.15 kB
assets/TeamWorkspacesDialogContent-DQ0BR3DJ.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.63 kB
assets/TeamWorkspacesDialogContent-tOPWCrYf.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/onboardingCloudRoutes-DhvumVwd.js (removed) 9.49 kB 🟢 -9.49 kB 🟢 -2.85 kB 🟢 -2.44 kB
assets/onboardingCloudRoutes-FTmXQB5y.js (new) 9.49 kB 🔴 +9.49 kB 🔴 +2.85 kB 🔴 +2.44 kB
assets/Load3DConfiguration-C7zApEfs.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-ClRBH2da.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/WidgetImageCrop-CnY99LYo.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.66 kB 🟢 -2.34 kB
assets/WidgetImageCrop-DdKzoOOC.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.66 kB 🔴 +2.34 kB
assets/SetMemberCreditLimitDialogContent-BImZpceI.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.07 kB
assets/SetMemberCreditLimitDialogContent-BV3HCjQG.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/nodeTemplates-D_HN53tS.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.86 kB 🟢 -2.5 kB
assets/nodeTemplates-DERsmtFx.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.86 kB 🔴 +2.5 kB
assets/WorkspaceSwitcherPopover-rWOB-yH8.js (removed) 8.01 kB 🟢 -8.01 kB 🟢 -2.38 kB 🟢 -2.12 kB
assets/WorkspaceSwitcherPopover-SPCUAWyA.js (new) 8.01 kB 🔴 +8.01 kB 🔴 +2.38 kB 🔴 +2.12 kB
assets/NightlySurveyController-1aa-NOnz.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.56 kB 🟢 -2.25 kB
assets/NightlySurveyController-D7yQOZX_.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/CloudRunButtonWrapper-CTmIomtH.js (new) 7.29 kB 🔴 +7.29 kB 🔴 +2.3 kB 🔴 +2.01 kB
assets/CloudRunButtonWrapper-DlrSya-X.js (removed) 7.29 kB 🟢 -7.29 kB 🟢 -2.29 kB 🟢 -2.01 kB
assets/WidgetWithControl-Bf77qvb-.js (removed) 6.51 kB 🟢 -6.51 kB 🟢 -2.66 kB 🟢 -2.35 kB
assets/WidgetWithControl-W3Br5Uvp.js (new) 6.51 kB 🔴 +6.51 kB 🔴 +2.67 kB 🔴 +2.35 kB
assets/missingModelMetadata-DKiYAkzV.js (removed) 6.45 kB 🟢 -6.45 kB 🟢 -2.21 kB 🟢 -1.93 kB
assets/missingModelMetadata-owPrpt97.js (new) 6.45 kB 🔴 +6.45 kB 🔴 +2.21 kB 🔴 +1.93 kB
assets/CancelSubscriptionDialogContent-CDCkBi6l.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/CancelSubscriptionDialogContent-kj3lad4L.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/load3dPreviewExtensions-BEYkMzcB.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/load3dPreviewExtensions-CgblHtQU.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/launchCancellationFlow-BhYGNSiQ.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.56 kB
assets/launchCancellationFlow-CBT4zU7T.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/CreateWorkspaceDialogContent-BU7_HpoU.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.8 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-CHE3Ai40.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.8 kB 🔴 +1.55 kB
assets/ChangeMemberRoleDialogContent-BOx4qWpD.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/ChangeMemberRoleDialogContent-CB5smX-Y.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/InviteMemberDialogContent-CpS6WPqG.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.65 kB 🔴 +1.44 kB
assets/InviteMemberDialogContent-CYs13COe.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/EditWorkspaceDialogContent-ChGCgtap.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/EditWorkspaceDialogContent-D_BzLnDT.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/WidgetTextarea-DcrtimpF.js (removed) 4.83 kB 🟢 -4.83 kB 🟢 -1.88 kB 🟢 -1.64 kB
assets/WidgetTextarea-DH30JuxZ.js (new) 4.83 kB 🔴 +4.83 kB 🔴 +1.88 kB 🔴 +1.65 kB
assets/saveMesh-C8lODAXr.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.37 kB
assets/saveMesh-D3A4dLJC.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.35 kB
assets/WorkspacePanelContent-DAkzICqd.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.63 kB 🔴 +1.44 kB
assets/WorkspacePanelContent-LVSisPEM.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.63 kB 🟢 -1.44 kB
assets/ValueControlPopover-C41Fter9.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/ValueControlPopover-r6fwYPRn.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/DeleteWorkspaceDialogContent-DATmI-xA.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/DeleteWorkspaceDialogContent-YoQ6amwu.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/RemoveMemberDialogContent-DuTdarRk.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.39 kB 🔴 +1.2 kB
assets/RemoveMemberDialogContent-pR0UvjNK.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.39 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-C4dCG7R-.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.4 kB 🟢 -1.21 kB
assets/RevokeInviteDialogContent-O9eiFlZK.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.4 kB 🔴 +1.21 kB
assets/LeaveWorkspaceDialogContent-RK77cI3_.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.19 kB
assets/LeaveWorkspaceDialogContent-V_MZ2P8-.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.19 kB
assets/InviteMemberUpsellDialogContent-Cdvgck8R.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.08 kB
assets/InviteMemberUpsellDialogContent-D7umFtQu.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/MediaVideoTop-D4rTG8gS.js (new) 3.44 kB 🔴 +3.44 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/workspaceCheckoutTelemetry-BXVTyYeV.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.32 kB
assets/workspaceCheckoutTelemetry-v11RGWIS.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.33 kB
assets/GlobalToast-ColZAAog.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/GlobalToast-kY4HOjHW.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.11 kB
assets/Media3DTop-CEghLZ_L.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.27 kB 🟢 -1.11 kB
assets/Media3DTop-Kacf_YMa.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/MediaVideoTop-7GGGEnch.js (removed) 2.96 kB 🟢 -2.96 kB 🟢 -1.19 kB 🟢 -1.04 kB
assets/load3dAdvanced-Bp0WR3oT.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +953 B
assets/load3dAdvanced-TZR4dd21.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -954 B
assets/SubscribeToRun-aUGIR9Xx.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.04 kB 🔴 +930 B
assets/SubscribeToRun-B7M8C-uR.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.04 kB 🟢 -911 B
assets/MediaAudioTop-JHrGiJ6W.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -807 B 🟢 -669 B
assets/MediaAudioTop-NYfp5RyA.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +807 B 🔴 +668 B
assets/cloudSessionCookie-BclvnC2F.js (removed) 933 B 🟢 -933 B 🟢 -433 B 🟢 -380 B
assets/cloudSessionCookie-Dp3nUzKU.js (new) 933 B 🔴 +933 B 🔴 +431 B 🔴 +378 B
assets/cloudBadges-Cu6Cck41.js (removed) 922 B 🟢 -922 B 🟢 -516 B 🟢 -443 B
assets/cloudBadges-uJHJHf0Y.js (new) 922 B 🔴 +922 B 🔴 +515 B 🔴 +441 B
assets/Load3DAdvanced-CjtErYxZ.js (new) 761 B 🔴 +761 B 🔴 +423 B 🔴 +359 B
assets/Load3DAdvanced-V5Wd2Nc1.js (removed) 761 B 🟢 -761 B 🟢 -423 B 🟢 -358 B
assets/nightlyBadges-CRMFV6z4.js (new) 411 B 🔴 +411 B 🔴 +273 B 🔴 +268 B
assets/nightlyBadges-zOp_PhR5.js (removed) 411 B 🟢 -411 B 🟢 -273 B 🟢 -271 B
assets/Load3dViewerContent-Avix7bVp.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -91 B
assets/Load3dViewerContent-FwQ4fSCk.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +91 B
assets/missingModelMetadata-B4vYHNOH.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -104 B
assets/missingModelMetadata-Dx5Urz4Q.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +105 B
assets/Load3DAdvanced-B6ousKb6.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -87 B
assets/Load3DAdvanced-C4iSxnes.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +91 B
assets/WidgetLegacy-DLCC_lod.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -104 B
assets/WidgetLegacy-zucRlfE3.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +105 B
assets/workflowDraftStoreV2-BbWDTXDa.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -110 B
assets/workflowDraftStoreV2-DYBJLqB6.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +110 B
assets/Load3D-2Rru826D.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -80 B
assets/Load3D-CJTtaEd_.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +81 B
assets/changeTracker-B2k7nFgW.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -85 B
assets/changeTracker-DHerFOPf.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +91 B

Status: 70 added / 70 removed / 218 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 75.0 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 77.6 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.9 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.7 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 76.9 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 75.3 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.3 MB heap
legacy-node-drag: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.6 MB heap
minimap-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.6 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.8 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.5 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.5 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 146ms TBT · 80.5 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 74.4 MB heap
vue-large-graph-idle: · 54.6 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 154.8 MB heap
vue-large-graph-pan: · 55.4 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 251ms TBT · 183.9 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.2 MB heap

⚠️ 9 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 433ms 587ms +36% ⚠️ z=6.2
canvas-mouse-sweep: layout duration 3ms 5ms +82% ⚠️ z=6.5
canvas-mouse-sweep: task duration 692ms 1004ms +45% ⚠️ z=2.4
canvas-zoom-sweep: task duration 304ms 434ms +43% ⚠️ z=4.6
large-graph-idle: task duration 506ms 735ms +45% ⚠️ z=3.6
large-graph-pan: task duration 939ms 1279ms +36% ⚠️ z=4.6
minimap-idle: task duration 518ms 756ms +46% ⚠️ z=4.8
subgraph-idle: task duration 418ms 571ms +37% ⚠️ z=6.4
workflow-execution: event listeners 97 61 -37% ⚠️ z=2.1
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms -0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 5ms 8ms +48% z=-3.4
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 8 -11% z=-5.6
canvas-idle: task duration 433ms 587ms +36% ⚠️ z=6.2
canvas-idle: script duration 6ms 10ms +74% z=-6.8
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 76.1 MB 75.0 MB -1%
canvas-idle: DOM nodes -281 -284 +1% z=-240.0
canvas-idle: event listeners -151 -151 +0% z=-34.4
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.9
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 3ms 5ms +82% ⚠️ z=6.5
canvas-mouse-sweep: style recalc duration 25ms 42ms +66% z=-0.1
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 71 76 +6% z=-1.4
canvas-mouse-sweep: task duration 692ms 1004ms +45% ⚠️ z=2.4
canvas-mouse-sweep: script duration 77ms 117ms +53% z=-2.9
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 54.5 MB 77.6 MB +42%
canvas-mouse-sweep: DOM nodes -280 -282 +1% z=-133.1
canvas-mouse-sweep: event listeners -151 -151 +0% z=-38.3
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=-0.3
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms +20% z=1.2
canvas-zoom-sweep: style recalc duration 13ms 19ms +46% z=-0.3
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 30 32 +5% z=0.5
canvas-zoom-sweep: task duration 304ms 434ms +43% ⚠️ z=4.6
canvas-zoom-sweep: script duration 8ms 14ms +64% z=-4.4
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 61.6 MB 60.9 MB -1%
canvas-zoom-sweep: DOM nodes 77 76 -1% z=-4.1
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 -1%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 6ms 7ms +22% z=-3.1
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 13 10 -23% z=-6.2
dom-widget-clipping: task duration 282ms 385ms +37% z=1.3
dom-widget-clipping: script duration 39ms 57ms +47% z=-3.4
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 68.4 MB 68.7 MB +0%
dom-widget-clipping: DOM nodes 22 16 -27% z=-4.3
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 6ms 10ms +69% z=-2.5
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 8 -11% z=-11.5
large-graph-idle: task duration 506ms 735ms +45% ⚠️ z=3.6
large-graph-idle: script duration 11ms 19ms +68% z=-8.0
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 84.5 MB 76.9 MB -9%
large-graph-idle: DOM nodes -280 -279 -0% z=-336.0
large-graph-idle: event listeners -177 -165 -7% z=-31.3
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 10ms 17ms +70% z=-0.9
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 70 +1% z=-0.1
large-graph-pan: task duration 939ms 1279ms +36% ⚠️ z=4.6
large-graph-pan: script duration 244ms 325ms +33% z=-4.2
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 83.4 MB 75.3 MB -10%
large-graph-pan: DOM nodes -280 -281 +0% z=-181.5
large-graph-pan: event listeners -149 -149 +0% z=-185.9
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -1%
large-graph-zoom: layout duration 7ms 9ms +34%
large-graph-zoom: style recalc duration 13ms 16ms +22%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 67 64 -4%
large-graph-zoom: task duration 1058ms 1499ms +42%
large-graph-zoom: script duration 272ms 411ms +51%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 91.7 MB 66.3 MB -28%
large-graph-zoom: DOM nodes 18 -288 -1697%
large-graph-zoom: event listeners 8 -169 -2213%
legacy-node-drag: avg frame time 17ms 17ms -0%
legacy-node-drag: p95 frame time 17ms 17ms +0%
legacy-node-drag: layout duration 0ms 0ms +0%
legacy-node-drag: style recalc duration 8ms 10ms +36%
legacy-node-drag: layout count 0 0 +0%
legacy-node-drag: style recalc count 48 46 -5%
legacy-node-drag: task duration 1099ms 1538ms +40%
legacy-node-drag: script duration 335ms 485ms +45%
legacy-node-drag: TBT 0ms 0ms +0%
legacy-node-drag: heap used 67.1 MB 78.6 MB +17%
legacy-node-drag: DOM nodes 16 11 -31%
legacy-node-drag: event listeners 186 186 +0%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms +1%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 6ms 7ms +6% z=-3.6
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 7 -35% z=-4.5
minimap-idle: task duration 518ms 756ms +46% ⚠️ z=4.8
minimap-idle: script duration 13ms 19ms +43% z=-8.0
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 66.0 MB 64.6 MB -2%
minimap-idle: DOM nodes -278 -282 +1% z=-220.2
minimap-idle: event listeners -149 -164 +10% z=-255.3
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.9
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 7ms 8ms +18% z=-4.6
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 44 -7% z=-7.6
subgraph-dom-widget-clipping: task duration 300ms 409ms +36% z=1.7
subgraph-dom-widget-clipping: script duration 87ms 122ms +40% z=-1.0
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 69.0 MB 69.8 MB +1%
subgraph-dom-widget-clipping: DOM nodes 20 13 -35% z=-8.2
subgraph-dom-widget-clipping: event listeners 8 8 +0% z=-1.4
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms -0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 5ms 9ms +64% z=-2.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 9 -10% z=-2.9
subgraph-idle: task duration 418ms 571ms +37% ⚠️ z=6.4
subgraph-idle: script duration 6ms 9ms +62% z=-4.1
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 63.7 MB 55.5 MB -13%
subgraph-idle: DOM nodes -279 -281 +1% z=-202.5
subgraph-idle: event listeners -183 -166 -9% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 5ms +31% z=1.0
subgraph-mouse-sweep: style recalc duration 29ms 42ms +45% z=-0.2
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 75 -1% z=-2.7
subgraph-mouse-sweep: task duration 653ms 898ms +38% z=1.9
subgraph-mouse-sweep: script duration 58ms 94ms +62% z=-1.0
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 76.8 MB 69.5 MB -9%
subgraph-mouse-sweep: DOM nodes -280 -283 +1% z=-156.4
subgraph-mouse-sweep: event listeners -151 -167 +11% 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 10ms 14ms +42%
subgraph-transition-enter: style recalc duration 25ms 33ms +34%
subgraph-transition-enter: layout count 15 13 -13%
subgraph-transition-enter: style recalc count 20 18 -10%
subgraph-transition-enter: task duration 723ms 1082ms +50%
subgraph-transition-enter: script duration 13ms 21ms +64%
subgraph-transition-enter: TBT 110ms 146ms +33%
subgraph-transition-enter: heap used 85.6 MB 80.5 MB -6%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2373 2375 +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 27ms 48ms +76%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 +0%
viewport-pan-sweep: task duration 3317ms 4548ms +37%
viewport-pan-sweep: script duration 781ms 1026ms +31%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 86.7 MB 74.4 MB -14%
viewport-pan-sweep: DOM nodes -280 -276 -1%
viewport-pan-sweep: event listeners -163 -133 -18%
vue-large-graph-idle: avg frame time 17ms 18ms +10%
vue-large-graph-idle: p95 frame time 17ms 17ms +1%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 11846ms 17959ms +52%
vue-large-graph-idle: script duration 87ms 140ms +61%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 169.7 MB 154.8 MB -9%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16389 -16386 -0%
vue-large-graph-pan: avg frame time 18ms 18ms +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 13ms 27ms +104%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 86 178 +106%
vue-large-graph-pan: task duration 15041ms 22913ms +52%
vue-large-graph-pan: script duration 360ms 477ms +33%
vue-large-graph-pan: TBT 4ms 251ms +6163%
vue-large-graph-pan: heap used 185.1 MB 183.9 MB -1%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16385 -16380 -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 2ms +182% z=0.7
workflow-execution: style recalc duration 15ms 20ms +32% z=-1.9
workflow-execution: layout count 2 6 +175% z=1.0
workflow-execution: style recalc count 13 10 -27% z=-4.0
workflow-execution: task duration 84ms 118ms +41% z=-0.4
workflow-execution: script duration 6ms 10ms +76% z=-6.5
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 63.6 MB 62.2 MB -2%
workflow-execution: DOM nodes 123 126 +2% z=-4.9
workflow-execution: event listeners 97 61 -37% ⚠️ z=2.1
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-08-21T08:44:18.068Z",
  "gitSha": "2e942d7a1e71374be41f77de41dc9e00d81d530b",
  "branch": "matt/fe-1711-video-controls-modifier-click",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2121.3879999999963,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.723000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 528.3549999999999,
      "heapDeltaBytes": 17922224,
      "heapUsedBytes": 79903240,
      "domNodes": -284,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 8.187000000000003,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2064.1110000000253,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.897999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 645.8489999999999,
      "heapDeltaBytes": 16194620,
      "heapUsedBytes": 77471560,
      "domNodes": -283,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 12.07,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2084.873000000016,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 41.272,
      "layouts": 12,
      "layoutDurationMs": 5.965,
      "taskDurationMs": 1017.1380000000001,
      "heapDeltaBytes": 19193388,
      "heapUsedBytes": 81575712,
      "domNodes": -283,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 117.18900000000001,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1941.7799999999943,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 43.139,
      "layouts": 12,
      "layoutDurationMs": 3.7919999999999994,
      "taskDurationMs": 991.1920000000001,
      "heapDeltaBytes": 19765716,
      "heapUsedBytes": 81091316,
      "domNodes": -281,
      "jsHeapTotalBytes": 5496832,
      "scriptDurationMs": 116.82600000000001,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1740.7109999999761,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 17.952,
      "layouts": 6,
      "layoutDurationMs": 0.6679999999999999,
      "taskDurationMs": 409.98799999999994,
      "heapDeltaBytes": 2763776,
      "heapUsedBytes": 63999860,
      "domNodes": 77,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 12.965,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1741.343000000029,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 19.316,
      "layouts": 6,
      "layoutDurationMs": 0.7259999999999999,
      "taskDurationMs": 457.851,
      "heapDeltaBytes": 2523656,
      "heapUsedBytes": 63757832,
      "domNodes": 75,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 14.644,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 615.2169999999728,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.284000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 374.33399999999995,
      "heapDeltaBytes": 10743152,
      "heapUsedBytes": 72044092,
      "domNodes": 16,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 54.78,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 668.280999999979,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.626999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 396.403,
      "heapDeltaBytes": 10847808,
      "heapUsedBytes": 71943796,
      "domNodes": 16,
      "jsHeapTotalBytes": 5505024,
      "scriptDurationMs": 58.516,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2031.75200000004,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 11.131000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 655.909,
      "heapDeltaBytes": 13041520,
      "heapUsedBytes": 88044552,
      "domNodes": -282,
      "jsHeapTotalBytes": 3141632,
      "scriptDurationMs": 16.546000000000006,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2069.501999999943,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 8.098999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 814.501,
      "heapDeltaBytes": -2821152,
      "heapUsedBytes": 73183288,
      "domNodes": -276,
      "jsHeapTotalBytes": -790528,
      "scriptDurationMs": 20.605,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2189.331999999979,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.143999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1223.414,
      "heapDeltaBytes": -7189704,
      "heapUsedBytes": 69292712,
      "domNodes": -279,
      "jsHeapTotalBytes": 221184,
      "scriptDurationMs": 315.238,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2301.113999999984,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.992000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1333.61,
      "heapDeltaBytes": 11737268,
      "heapUsedBytes": 88694404,
      "domNodes": -282,
      "jsHeapTotalBytes": 4677632,
      "scriptDurationMs": 335.138,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3198.6840000000143,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.383999999999999,
      "layouts": 60,
      "layoutDurationMs": 8.411,
      "taskDurationMs": 1460.347,
      "heapDeltaBytes": -10659720,
      "heapUsedBytes": 67645432,
      "domNodes": -287,
      "jsHeapTotalBytes": 5763072,
      "scriptDurationMs": 408.76099999999997,
      "eventListeners": -155,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3314.5730000001095,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.653999999999998,
      "layouts": 60,
      "layoutDurationMs": 9.052999999999999,
      "taskDurationMs": 1538.267,
      "heapDeltaBytes": -5568956,
      "heapUsedBytes": 71463064,
      "domNodes": -288,
      "jsHeapTotalBytes": 6025216,
      "scriptDurationMs": 412.35,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666696,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2406.38899999999,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.932000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1464.7140000000002,
      "heapDeltaBytes": 10834636,
      "heapUsedBytes": 95293264,
      "domNodes": 10,
      "jsHeapTotalBytes": 8581120,
      "scriptDurationMs": 462.512,
      "eventListeners": 186,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2694.541999999956,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.495999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1611.746,
      "heapDeltaBytes": -16281632,
      "heapUsedBytes": 69484156,
      "domNodes": 12,
      "jsHeapTotalBytes": 12095488,
      "scriptDurationMs": 507.67799999999994,
      "eventListeners": 186,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "minimap-idle",
      "durationMs": 2041.2299999999846,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 5.530999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 672.612,
      "heapDeltaBytes": -13724144,
      "heapUsedBytes": 62579588,
      "domNodes": -282,
      "jsHeapTotalBytes": 3403776,
      "scriptDurationMs": 17.265000000000004,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2097.3599999999806,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 7.717000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 839.4699999999999,
      "heapDeltaBytes": -9456580,
      "heapUsedBytes": 72795976,
      "domNodes": -282,
      "jsHeapTotalBytes": 2093056,
      "scriptDurationMs": 20.501,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 587.8819999999791,
      "styleRecalcs": 44,
      "styleRecalcDurationMs": 8.698,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 401.701,
      "heapDeltaBytes": 11846224,
      "heapUsedBytes": 73897396,
      "domNodes": 14,
      "jsHeapTotalBytes": 5767168,
      "scriptDurationMs": 120.96799999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 634.6579999999449,
      "styleRecalcs": 43,
      "styleRecalcDurationMs": 8.052,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 416.10400000000004,
      "heapDeltaBytes": 11059968,
      "heapUsedBytes": 72556728,
      "domNodes": 12,
      "jsHeapTotalBytes": 4194304,
      "scriptDurationMs": 123.135,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2012.6920000000155,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.746000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 500.081,
      "heapDeltaBytes": -6641760,
      "heapUsedBytes": 54848224,
      "domNodes": -281,
      "jsHeapTotalBytes": 4186112,
      "scriptDurationMs": 7.665,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2020.6249999999955,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.716,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 642.824,
      "heapDeltaBytes": 141760,
      "heapUsedBytes": 61489476,
      "domNodes": -281,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 10.860999999999999,
      "eventListeners": -181,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1753.2979999999725,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 40.10900000000001,
      "layouts": 16,
      "layoutDurationMs": 4.937,
      "taskDurationMs": 842.147,
      "heapDeltaBytes": 4243164,
      "heapUsedBytes": 65894160,
      "domNodes": -281,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 88.15500000000002,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1836.5629999999555,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 43.692,
      "layouts": 16,
      "layoutDurationMs": 5.133,
      "taskDurationMs": 953.4220000000001,
      "heapDeltaBytes": 18518420,
      "heapUsedBytes": 79814772,
      "domNodes": -284,
      "jsHeapTotalBytes": 4972544,
      "scriptDurationMs": 100.21199999999999,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1459.6070000000054,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 33.013,
      "layouts": 13,
      "layoutDurationMs": 13.871000000000002,
      "taskDurationMs": 1081.519,
      "heapDeltaBytes": -9724168,
      "heapUsedBytes": 84396076,
      "domNodes": 13673,
      "jsHeapTotalBytes": 13369344,
      "scriptDurationMs": 21.11500000000001,
      "eventListeners": 2375,
      "totalBlockingTimeMs": 146,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8314.604999999972,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 45.681000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4376.907,
      "heapDeltaBytes": 847308,
      "heapUsedBytes": 76848452,
      "domNodes": -279,
      "jsHeapTotalBytes": 483328,
      "scriptDurationMs": 1000.915,
      "eventListeners": -135,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8767.253999999979,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 50.777,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4718.383999999999,
      "heapDeltaBytes": 3484912,
      "heapUsedBytes": 79178332,
      "domNodes": -273,
      "jsHeapTotalBytes": -40960,
      "scriptDurationMs": 1050.9170000000001,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 18492.771000000004,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17714.609,
      "heapDeltaBytes": -65651376,
      "heapUsedBytes": 161279096,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14880768,
      "scriptDurationMs": 139.44500000000002,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.773333333333238,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 18882.084999999963,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 18204.160000000003,
      "heapDeltaBytes": -59062692,
      "heapUsedBytes": 163433520,
      "domNodes": -8312,
      "jsHeapTotalBytes": -10162176,
      "scriptDurationMs": 140.331,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.886666666666738,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 23287.308999999994,
      "styleRecalcs": 177,
      "styleRecalcDurationMs": 26.98600000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 22865.278,
      "heapDeltaBytes": -41692044,
      "heapUsedBytes": 194321820,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14917632,
      "scriptDurationMs": 447.159,
      "eventListeners": -16381,
      "totalBlockingTimeMs": 280,
      "frameDurationMs": 17.776666666666763,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 23529.508000000078,
      "styleRecalcs": 178,
      "styleRecalcDurationMs": 27.817000000000036,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 22961.705,
      "heapDeltaBytes": -17952216,
      "heapUsedBytes": 191418596,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14163968,
      "scriptDurationMs": 507.524,
      "eventListeners": -16379,
      "totalBlockingTimeMs": 221,
      "frameDurationMs": 18.333333333333453,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 143.59999999999218,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 18.804000000000002,
      "layouts": 8,
      "layoutDurationMs": 2.5709999999999997,
      "taskDurationMs": 110.71000000000001,
      "heapDeltaBytes": 3134256,
      "heapUsedBytes": 64202728,
      "domNodes": 133,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 10.624000000000002,
      "eventListeners": 25,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 486.0760000000255,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 21.116,
      "layouts": 3,
      "layoutDurationMs": 0.7229999999999999,
      "taskDurationMs": 125.254,
      "heapDeltaBytes": 4930096,
      "heapUsedBytes": 66148424,
      "domNodes": 119,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 8.937000000000003,
      "eventListeners": 97,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

@github-actions github-actions Bot added the risk:R2 PR risk grade (advisory shadow check; grader-owned) label Aug 21, 2026
@datadog-official

This comment has been minimized.

@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 6 finding(s).

Severity Count
🟡 Medium 2
🟢 Low 4

Panel: 8/8 reviewers contributed findings.

Comment thread src/platform/assets/components/MediaVideoTop.vue Outdated
Comment thread src/platform/assets/components/MediaVideoTop.vue
Comment thread src/platform/assets/components/MediaVideoTop.vue Outdated
Comment thread src/platform/assets/components/MediaVideoTop.vue
Comment thread src/platform/assets/components/MediaVideoTop.vue
Comment thread src/platform/assets/components/MediaVideoTop.vue
@codecov

codecov Bot commented Aug 21, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@            Coverage Diff             @@
##             main   #15541      +/-   ##
==========================================
+ Coverage   79.80%   82.07%   +2.27%     
==========================================
  Files        2214     1887     -327     
  Lines      127824   122906    -4918     
  Branches    40831    40120     -711     
==========================================
- Hits       102004   100879    -1125     
+ Misses      25216    21522    -3694     
+ Partials      604      505      -99     
Flag Coverage Δ
unit 73.29% <100.00%> (+<0.01%) ⬆️
website-unit ?

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

Files with missing lines Coverage Δ
src/platform/assets/components/MediaVideoTop.vue 100.00% <100.00%> (+18.00%) ⬆️

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

- Bump NATIVE_CONTROLS_STRIP_PX to 64 (Chromium's actual strip height);
  48 under-covered Chromium and let modifier-clicks on its control bar
  still bubble to card selection, the bug this PR fixes.
- Bound isOverNativeControls on both ends and guard non-positive
  height so a zero-height element can never match.
- Replace fireEvent.click(video, {...}) in tests with
  user.pointer()/user.keyboard() to fix the lint-and-format CI
  failure (testing-library/prefer-user-event).
@dosubot dosubot Bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:S This PR changes 10-29 lines, ignoring generated files. labels Aug 21, 2026
@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-8347 — Make MediaVideoTop's native-controls guard transform-aware — filed as agent-spike (premise unverified)
  • BE-8348 — Decide the right native-controls strip cap for short/thumbnail-sized video cards — filed as agent-spike (premise unverified)
  • BE-8349 — Handle native-scrubber drag-release-outside-video click retargeting in MediaVideoTop — 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:

  • Make MediaVideoTop's native-controls guard transform-aware — no reachability block in the proposal
  • Decide the right native-controls strip cap for short/thumbnail-sized video cards — no reachability block in the proposal
  • Handle native-scrubber drag-release-outside-video click retargeting in MediaVideoTop — no reachability block in the proposal

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 risk:R2 PR risk grade (advisory shadow check; grader-owned) size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant