Skip to content

fix: preserve subgraph node size when editing or promoting widgets (FE-853) - #14461

Merged
DrJKL merged 15 commits into
mainfrom
glary/fe-853-subgraph-resize-unified
Jul 31, 2026
Merged

fix: preserve subgraph node size when editing or promoting widgets (FE-853)#14461
DrJKL merged 15 commits into
mainfrom
glary/fe-853-subgraph-resize-unified

Conversation

@DrJKL

@DrJKL DrJKL commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

PR Created by the Glary-Bot Agent


Single unified PR for FE-853 — the fix plus full regression coverage, targeting main.

Supersedes #14374, #14415 and #14418, all of which can be closed. This branch contains the fix originally proposed in #14374 (authorship preserved) with the regression test from #14415 folded in, rebased onto current main.

The bug

Resize a subgraph node, then touch the widget-editing UI, and the node snaps back to its computed minimum size — silently discarding the size you set. Reported in #bug-dump via the "Edit Subgraph Widgets" button; FE-853 tracks the same collapse when promoting or un-promoting a widget.

Measured against main before the fix:

Step Node size
After the user's resize drag 506 × 339
After clicking "Edit Subgraph Widgets" 225 × 58
After promoting an interior widget 225 × 58

The fix

Three call sites refreshed a subgraph host node's rendering with computeSize(node.size). computeSize returns the minimum size for the node's content and those calls assigned it back, so every refresh clamped the node down and destroyed any larger user-set size.

Replaced with expandToFitContent(), which grows the node when content requires more room but never shrinks it:

  • src/components/rightSidePanel/subgraph/SubgraphEditor.vuerefreshPromotedWidgetRendering(), the path the "Edit Subgraph Widgets" button hits
  • src/core/graph/subgraph/promotionUtils.tsrefreshPromotedWidgetRendering() (promote/demote) and promoteRecommendedWidgets()

Regression coverage

subgraphEditWidgetsResize.spec.ts (2 tests) — approaches the bug from the user-reported entry point:

  1. Clicking the "Edit Subgraph Widgets" selection-toolbox button, which is what the screen recording shows
  2. Promoting an interior widget, the trigger in FE-853's title

subgraphResizePreservation.spec.ts (6 tests) — promote, un-promote, panel open, multi-widget sequences, resize-still-works-after-promotion, and a nested-subgraph host.

Unit tests (60) across promotionUtils.test.ts and SubgraphEditor.test.ts.

Sizes are read from the graph model rather than DOM bounding boxes, so assertions aren't confounded by canvas zoom or by the canvas shrinking when the side panel opens. The promotion test asserts steps actually reached the host node before checking size, so it can't pass vacuously if promotion silently became a no-op.

Supporting fixtures: NodeOperationsHelper.growNodeByDrag() (user-style resize drag returning model-space size, beside the existing canvas-based resizeNode) and SubgraphEditor.openFromSelectionToolbox() (toolbox-button path, complementing the context-menu ensureOpen()).

Verification

The tests were confirmed to detect the regression rather than pass incidentally, by reverting the fix in place on this branch:

src state subgraphEditWidgetsResize
expandToFitContent() 2 passed
reverted to computeSize(node.size) 2 failedexpected 506.0625, received 225

In the reverted run the failing assertion is the width check, not the promotion guard.

Against current main after rebase: 8 e2e passed, 60 unit passed, and pnpm typecheck, pnpm typecheck:browser, ESLint, oxlint, oxfmt --check and pnpm knip all clean.

Review history carried over

Screenshots

Subgraph node manually resized to 506x339 with the selection toolbox above it

Pre-fix behavior: after clicking Edit Subgraph Widgets the node collapsed to 225x58

claude and others added 13 commits July 31, 2026 03:45
computeSize(out) computes a node's minimum size and, when called with a
node's own live size array as out, mutates that array in place -
overwriting any larger, user-set size. Three call sites in the subgraph
widget-promotion path did this on every promote/demote and on right-side
panel mount (which runs pruneDisconnected), silently collapsing resized
subgraph nodes back to their minimum footprint.

Replace those calls with the existing expandToFitContent() helper, which
grows a node to fit new content without shrinking below its current size -
the same primitive already used by addInput/addOutput/addWidget.

Fixes FE-853
…t setup

The three widget-promotion resize tests clicked the enter-subgraph footer
button immediately after a manual corner drag, before the browser painted
the new layout. Other resize specs (e.g. videoPreview.spec.ts) always wait
a frame after resizeFromCorner before reading or acting on the node again;
apply the same wait here.

The nested-subgraph resize test was missing the @vue-nodes tag and the
Comfy.UseNewMenu beforeEach hook that every other test in this file has,
so it ran against the classic canvas renderer instead of the Vue node
renderer the rest of the suite exercises.
…spec

The fixture workflows carry a saved pan/zoom that places nodes partially
below the fold on the default 1280x720 Playwright viewport. Growing a
node further (or, for the nested-promotion fixture, its unaltered
starting size) then pushes its resize handle and the subgraph-enter
footer button off-screen, causing the click-intercept timeouts and the
no-op resize seen in CI. Fit the view to all nodes right after each
workflow load so screen-space interactions land on visible elements.
The Top menu bar's workflow tab strip overlays the canvas at (10, 10),
so clicking that fixed coordinate to focus the canvas before pressing
the fit-view keybinding intercepted on the tab label and timed out,
failing all 6 tests in subgraphResizePreservation.spec.ts. Focusing
the canvas element directly sidesteps pointer-event interception
entirely.
fitViewToNodes (added to work around topbar interception) legitimately
changes canvas zoom away from 1 for the nested-promotion fixture.
NodeOperationsHelper.resizeNode combined a screen-space nodePos
(NodeReference#getPosition applies pan/zoom) with a raw graph-space
nodeSize, so the computed drag points landed off the actual resize
handle whenever scale != 1, making the drag a no-op. Scale nodeSize by
the canvas zoom before combining it with nodePos.
fitViewToNodes triggered Comfy.Canvas.FitView, which always rescales the
canvas to fill 75% of the viewport, changing scale away from 1 even
though the fixtures already fit on-screen with a plain pan. That broke
NodeOperationsHelper.resizeNode, which combines a screen-space nodePos
with a raw graph-space nodeSize and only lands its drag points correctly
when scale is 1, and likely destabilized the pixel-ratio heuristic
enterSubgraph uses to find the unobstructed part of its footer button.

Replace the zoom-to-fit keypress with a direct pan that pins scale to 1
and only translates the canvas offset so every node clears both the
viewport edges and the workflow tab strip. This removes the need for
resizeNode (or any other pixel-space helper in this suite) to compensate
for a non-1 scale, so revert its scale-multiplication workaround.
The nested-promotion resize test clicked subgraph-widget-toggle directly,
but that control is intentionally disabled for genuinely linked/promoted
widgets (only preview exposures can toggle there). Switch to the same
Un-Promote Widget context-menu action used by every other test in this
file: enter the outer host's subgraph and un-promote the interior
SubgraphNode's widget, which is itself a promotion chain three levels
deep (Inner 3 -> Sub 2 -> Sub 1 -> Sub 0).
resizeNode scales the existing size multiplicatively, so 2.5x pushed the
outer host node's bottom edge (and the subgraph-enter footer button)
~330px below the 720px viewport, causing enterSubgraph's actionability
check to time out. 1.4x keeps the node comfortably on-screen while still
satisfying the test's greater-than assertions.
A promoted widget's display is disabled/readonly since its value comes
from the subgraph input link. Playwright's plain click() refuses to
interact with disabled elements, even for a right-click, so
unpromoteWidget's context-menu click was timing out for widgets like
'value_1' in the nested-promotion resize test. The app itself still
receives and handles the native contextmenu event on these disabled
elements, so bypassing Playwright's actionability check with force
exercises the same real user interaction.
Manually resizing a subgraph node and then triggering the widget-editing
UI collapses the node back to its computed minimum size, discarding the
user's size. Reproduced here via both the 'Edit Subgraph Widgets'
selection-toolbox button and promoting an interior widget.

Both tests currently fail (node width 506 -> 225), documenting the bug
ahead of the fix.
Addresses review feedback: browser_tests/README.md requires setup
routines and locator wiring to live in fixtures/helpers/page objects
rather than as free-standing functions in a spec.

- SubgraphHelper.growNodeByDrag: user-style resize drag returning the
  model size, so comparisons survive zoom and side-panel layout shifts.
- SubgraphEditor.openFromSelectionToolbox: the 'Edit Subgraph Widgets'
  toolbox button path from the bug report.
Resizing a node by dragging its Vue corner handle isn't subgraph
specific, so it belongs alongside the existing resizeNode in nodeOps
rather than in SubgraphHelper.
Addresses review feedback: without this the size assertions could hold
even if promoteWidget silently became a no-op, letting the regression
test pass without exercising the widget-editing path.
@github-actions

github-actions Bot commented Jul 31, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 07/31/2026, 07:57:14 AM UTC

Links

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

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

📦 Bundle: 8.19 MB gzip 🔴 +147 B

Details

Summary

  • Raw size: 34.4 MB baseline 34.4 MB — 🟢 -24 B
  • Gzip: 8.19 MB baseline 8.19 MB — 🔴 +147 B
  • Brotli: 5.67 MB baseline 5.67 MB — 🔴 +170 B
  • Bundles: 426 current • 426 baseline • 144 added / 144 removed

Category Glance
Graph Workspace 🟢 -48 B (1.29 MB) · Data & Services 🔴 +24 B (3.44 MB) · Vendor & Third-Party ⚪ 0 B (15.7 MB) · Other ⚪ 0 B (12.7 MB) · Panels & Settings ⚪ 0 B (551 kB) · Utilities & Hooks ⚪ 0 B (386 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-DmcKdeVt.js (new) 3.62 kB 🔴 +3.62 kB 🔴 +1.81 kB 🔴 +1.57 kB
assets/index-DSDPWH_0.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) • 🟢 -48 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-DRXk8OKB.js (removed) 1.29 MB 🟢 -1.29 MB 🟢 -276 kB 🟢 -208 kB
assets/GraphView-_po9WvON.js (new) 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-5aSBaFhp.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.22 kB 🔴 +5.51 kB
assets/CloudSurveyView-CK2qEX_V.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.22 kB 🟢 -5.51 kB
assets/CloudLoginView-B1ce-15j.js (removed) 11.6 kB 🟢 -11.6 kB 🟢 -3.1 kB 🟢 -2.73 kB
assets/CloudLoginView-C7Ag2Ayj.js (new) 11.6 kB 🔴 +11.6 kB 🔴 +3.11 kB 🔴 +2.74 kB
assets/CloudSignupView-BogXXR__.js (new) 9.9 kB 🔴 +9.9 kB 🔴 +2.78 kB 🔴 +2.43 kB
assets/CloudSignupView-Do1c1vY4.js (removed) 9.9 kB 🟢 -9.9 kB 🟢 -2.77 kB 🟢 -2.43 kB
assets/CloudLayoutView-CBF7ORkF.js (new) 9.48 kB 🔴 +9.48 kB 🔴 +2.32 kB 🔴 +1.99 kB
assets/CloudLayoutView-oz7WM9XA.js (removed) 9.48 kB 🟢 -9.48 kB 🟢 -2.31 kB 🟢 -2 kB
assets/UserCheckView-BxE7mBYc.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.9 kB
assets/UserCheckView-C44UFX4P.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/WidgetTextPreview-C2tbX2u9.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.9 kB
assets/WidgetTextPreview-DkB8EUT2.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.9 kB
assets/CloudSubscriptionRedirectView-B7QdTBgf.js (new) 5.99 kB 🔴 +5.99 kB 🔴 +2.23 kB 🔴 +1.94 kB
assets/CloudSubscriptionRedirectView-DbWBYBaf.js (removed) 5.99 kB 🟢 -5.99 kB 🟢 -2.23 kB 🟢 -1.94 kB
assets/UserSelectView-C3ZB-XuP.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.95 kB 🔴 +1.72 kB
assets/UserSelectView-CNEdhn8K.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.95 kB 🟢 -1.71 kB
assets/CloudForgotPasswordView-DhLBf8GO.js (removed) 5.09 kB 🟢 -5.09 kB 🟢 -1.73 kB 🟢 -1.51 kB
assets/CloudForgotPasswordView-uHkXhL_Y.js (new) 5.09 kB 🔴 +5.09 kB 🔴 +1.72 kB 🔴 +1.51 kB
assets/CloudAuthTimeoutView-c4sAy-Qa.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.33 kB
assets/CloudAuthTimeoutView-CdJRfLx3.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.34 kB
assets/OAuthLayoutView-BR_MSD55.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -700 B 🟢 -594 B
assets/OAuthLayoutView-CJl-4krC.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +700 B 🔴 +594 B
assets/WidgetTextPreview-BgVJ3uXI.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -91 B
assets/WidgetTextPreview-CeAEFmMI.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +89 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-B2cPX7Wv.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.95 kB 🟢 -8.79 kB
assets/KeybindingPanel-CGXxzRh0.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.95 kB 🔴 +8.82 kB
assets/SecretsPanel-CV8vFa1r.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.86 kB 🟢 -6.9 kB
assets/SecretsPanel-Mz_MnbpT.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.86 kB 🔴 +6.89 kB
assets/CreditsPanel-BDteiSM4.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.63 kB 🔴 +4.07 kB
assets/CreditsPanel-DbqTUfqG.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.63 kB 🟢 -4.07 kB
assets/SubscriptionPanel-CfcseFBo.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.63 kB 🔴 +3.2 kB
assets/SubscriptionPanel-DgolOVWD.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.63 kB 🟢 -3.17 kB
assets/AboutPanel-BtXFVFv1.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.02 kB 🔴 +2.71 kB
assets/AboutPanel-bUHjNdXA.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.02 kB 🟢 -2.72 kB
assets/ExtensionPanel-C2FPLVBi.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/ExtensionPanel-R9haJi8f.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.22 kB
assets/ServerConfigPanel-B3LhfMJ7.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.94 kB 🔴 +1.72 kB
assets/ServerConfigPanel-CWainWtY.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.72 kB
assets/UserPanel-BIYVEogV.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.55 kB
assets/UserPanel-Ds1rS8uA.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.55 kB
assets/refreshRemoteConfig-D6tOZgMq.js (new) 2.91 kB 🔴 +2.91 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/refreshRemoteConfig-DcLIxdqv.js (removed) 2.91 kB 🟢 -2.91 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/cloudRemoteConfig-CpuPntCL.js (new) 933 B 🔴 +933 B 🔴 +506 B 🔴 +418 B
assets/cloudRemoteConfig-yPc4RmlA.js (removed) 933 B 🟢 -933 B 🟢 -505 B 🟢 -419 B
assets/refreshRemoteConfig-CTUJ3vdG.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +90 B
assets/refreshRemoteConfig-wxvEOi3C.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -85 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-CIV9HR2g.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +4.15 kB 🔴 +3.62 kB
assets/SignUpForm-CQF3-bkk.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -4.15 kB 🟢 -3.62 kB
assets/auth-BQVqaHD6.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.27 kB 🟢 -1.09 kB
assets/auth-dh54zizz.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.27 kB 🔴 +1.09 kB
assets/usePostAuthRedirect-CkmDtje9.js (removed) 3.28 kB 🟢 -3.28 kB 🟢 -1.24 kB 🟢 -1.08 kB
assets/usePostAuthRedirect-DY0UYZyf.js (new) 3.28 kB 🔴 +3.28 kB 🔴 +1.24 kB 🔴 +1.08 kB
assets/UpdatePasswordContent-BHPx1bNz.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +839 B 🔴 +726 B
assets/UpdatePasswordContent-BYwsg-OF.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -839 B 🟢 -728 B
assets/authStore-BTzXSkWq.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +104 B
assets/authStore-g02iB_vV.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -104 B
assets/workspaceAuthStore-CSRUlTu8.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -100 B
assets/workspaceAuthStore-fcXIrT0-.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +104 B
assets/auth-Be4OU1B7.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +79 B
assets/auth-DM3FlYan.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -92 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-Bf9gyXC6.js (new) 90 kB 🔴 +90 kB 🔴 +19.2 kB 🔴 +16.5 kB
assets/ComfyHubPublishDialog-Dh37ewCQ.js (removed) 90 kB 🟢 -90 kB 🟢 -19.2 kB 🟢 -16.5 kB
assets/useShareDialog-CIwq-voE.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.7 kB 🔴 +5.04 kB
assets/useShareDialog-Cp3ggtoZ.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.03 kB
assets/feedbackDialog-DOA0qwoO.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.86 kB 🔴 +1.59 kB
assets/feedbackDialog-DtFgwjo4.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.86 kB 🟢 -1.59 kB
assets/useRangeEditor-Dtayoigt.js (new) 3.23 kB 🔴 +3.23 kB 🔴 +1.13 kB 🔴 +1.04 kB
assets/useRangeEditor-n95o1PJ_.js (removed) 3.23 kB 🟢 -3.23 kB 🟢 -1.13 kB 🟢 -1.02 kB
assets/ComfyHubPublishDialog-C9wKD8lq.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/ComfyHubPublishDialog-CYi_KG6E.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +89 B
assets/useSubscriptionDialog-BMmtS9gP.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -89 B
assets/useSubscriptionDialog-DPArkCRW.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +95 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-BYHaNnpT.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.73 kB 🔴 +3.31 kB
assets/ComfyQueueButton-CbHKBQHm.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.73 kB 🟢 -3.31 kB
assets/useTerminalTabs-8bAPP2Jv.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.26 kB
assets/useTerminalTabs-B9CTkTkp.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.27 kB
assets/InviteMembersForm-CuQukKcf.js (new) 7.96 kB 🔴 +7.96 kB 🔴 +2.65 kB 🔴 +2.35 kB
assets/InviteMembersForm-DfAcwm0q.js (removed) 7.96 kB 🟢 -7.96 kB 🟢 -2.65 kB 🟢 -2.36 kB
assets/SubscribeButton-DQpZc9EA.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -954 B 🟢 -834 B
assets/SubscribeButton-DSmUCJt9.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +954 B 🔴 +835 B
assets/cloudFeedbackTopbarButton-B-pAHVxg.js (removed) 705 B 🟢 -705 B 🟢 -419 B 🟢 -360 B
assets/cloudFeedbackTopbarButton-Cf3m4NdG.js (new) 705 B 🔴 +705 B 🔴 +419 B 🔴 +360 B
assets/ComfyQueueButton-Ds1AL5PU.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +93 B
assets/ComfyQueueButton-kLDHpNCM.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -92 B

Status: 6 added / 6 removed / 9 unchanged

Data & Services — 3.44 MB (baseline 3.44 MB) • 🔴 +24 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-CaUqv_Cz.js (new) 3.17 MB 🔴 +3.17 MB 🔴 +734 kB 🔴 +553 kB
assets/settingStore-BwiYMaDL.js (removed) 3.17 MB 🟢 -3.17 MB 🟢 -734 kB 🟢 -553 kB
assets/load3dService-DQ7RRpb3.js (new) 132 kB 🔴 +132 kB 🔴 +29.2 kB 🔴 +24.6 kB
assets/load3dService-DwPJP6wH.js (removed) 132 kB 🟢 -132 kB 🟢 -29.2 kB 🟢 -24.5 kB
assets/api-CqIaML8T.js (removed) 92 kB 🟢 -92 kB 🟢 -25.4 kB 🟢 -21.9 kB
assets/api-DQhJ-yI7.js (new) 92 kB 🔴 +92 kB 🔴 +25.4 kB 🔴 +21.8 kB
assets/workflowShareService-Bwyoebrx.js (removed) 16.4 kB 🟢 -16.4 kB 🟢 -4.89 kB 🟢 -4.34 kB
assets/workflowShareService-HkfeVxs_.js (new) 16.4 kB 🔴 +16.4 kB 🔴 +4.89 kB 🔴 +4.33 kB
assets/keybindingService-b3Pb4gJM.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/keybindingService-D4YbbkH-.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/releaseStore-D0sVNeGf.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/releaseStore-DzbWuNnt.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.78 kB
assets/systemStatsStore-C-uGOixZ.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/systemStatsStore-XH-_8QJY.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/userStore-BBE71dtM.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -898 B 🟢 -796 B
assets/userStore-BxtPhd-h.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +898 B 🔴 +795 B
assets/audioService-CASaJ2J_.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -831 B 🟢 -722 B
assets/audioService-Ht7HBsRj.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +830 B 🔴 +724 B
assets/dialogService-A6ed8JTn.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +84 B
assets/dialogService-ClIxAkaC.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -83 B
assets/releaseStore-CjgA1H8G.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +84 B
assets/releaseStore-DexrtXlx.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -78 B
assets/settingStore-CW6VhOLx.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -78 B
assets/settingStore-DyeyuS56.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +83 B
assets/assetsStore-BcF1kuIz.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +85 B
assets/assetsStore-CZffUFTk.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -84 B
assets/api-m45BF4F7.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B
assets/api-mDIlahTL.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B

Status: 14 added / 14 removed / 3 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BCzAH-BF.js (new) 235 kB 🔴 +235 kB 🔴 +52.5 kB 🔴 +42.7 kB
assets/useConflictDetection-f-ZW6h87.js (removed) 235 kB 🟢 -235 kB 🟢 -52.5 kB 🟢 -42.7 kB
assets/useLoad3d-BQkIeufi.js (new) 25.7 kB 🔴 +25.7 kB 🔴 +5.79 kB 🔴 +5.12 kB
assets/useLoad3d-DSw5eB0r.js (removed) 25.7 kB 🟢 -25.7 kB 🟢 -5.79 kB 🟢 -5.13 kB
assets/useLoad3dViewer-ctSprUl7.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.35 kB
assets/useLoad3dViewer-vK4s8tcg.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useImageCrop-Br545Xaw.js (new) 15 kB 🔴 +15 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useImageCrop-DmZESRga.js (removed) 15 kB 🟢 -15 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useDowngradeToPersonal-DUUz8axl.js (new) 8.85 kB 🔴 +8.85 kB 🔴 +2.53 kB 🔴 +2.17 kB
assets/useDowngradeToPersonal-nuipv_9W.js (removed) 8.85 kB 🟢 -8.85 kB 🟢 -2.53 kB 🟢 -2.17 kB
assets/useFeatureFlags-BzTu0MUW.js (new) 7.31 kB 🔴 +7.31 kB 🔴 +2.18 kB 🔴 +1.84 kB
assets/useFeatureFlags-qc4IXfnk.js (removed) 7.31 kB 🟢 -7.31 kB 🟢 -2.18 kB 🟢 -1.83 kB
assets/assetPreviewUtil-B1loZBdO.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +969 B 🔴 +845 B
assets/assetPreviewUtil-f0Gfvzsj.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -969 B 🟢 -847 B
assets/useUpstreamValue-CFWaLTHy.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -757 B 🟢 -679 B
assets/useUpstreamValue-DD1c55zE.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +758 B 🔴 +676 B
assets/useWorkspaceTierLabel-DbA5ydoc.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -813 B 🟢 -699 B
assets/useWorkspaceTierLabel-Tv56u8lA.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +814 B 🔴 +700 B
assets/subscriptionCheckoutUtil-DiVNUHha.js (removed) 841 B 🟢 -841 B 🟢 -502 B 🟢 -424 B
assets/subscriptionCheckoutUtil-DmtqtObK.js (new) 841 B 🔴 +841 B 🔴 +502 B 🔴 +426 B
assets/useSessionCookie-COY0UJ0c.js (removed) 692 B 🟢 -692 B 🟢 -356 B 🟢 -307 B
assets/useSessionCookie-uJbZoek4.js (new) 692 B 🔴 +692 B 🔴 +357 B 🔴 +311 B
assets/useLoad3d-DC6Acucd.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -148 B
assets/useLoad3d-KAhodhBg.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useSessionCookie-CHfbxxmE.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +79 B
assets/useSessionCookie-CHtR6S27.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -85 B
assets/useFeatureFlags-C_UaBzEa.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +86 B
assets/useFeatureFlags-DEa4GayM.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -86 B
assets/useLoad3dViewer-Bnu4LYO7.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -85 B
assets/useLoad3dViewer-CEEucfTI.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +84 B
assets/useCurrentUser-1229G3ES.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -85 B
assets/useCurrentUser-xJH4hLw3.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +84 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-C-RGmfsR.js (new) 111 kB 🔴 +111 kB 🔴 +28.7 kB 🔴 +24.3 kB
assets/core-CODaEXlP.js (removed) 111 kB 🟢 -111 kB 🟢 -28.6 kB 🟢 -24.3 kB
assets/WidgetSelect-D3D7z-Rc.js (new) 88 kB 🔴 +88 kB 🔴 +19.9 kB 🔴 +17.1 kB
assets/WidgetSelect-J8RMdLMl.js (removed) 88 kB 🟢 -88 kB 🟢 -19.9 kB 🟢 -17.1 kB
assets/Load3D-BlKSBG__.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +9.98 kB
assets/Load3D-DaEvF1cI.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -9.97 kB
assets/WidgetVideoEdit-BUtwm4K_.js (new) 63.4 kB 🔴 +63.4 kB 🔴 +14.6 kB 🔴 +12.8 kB
assets/WidgetVideoEdit-DOjI2Kyw.js (removed) 63.4 kB 🟢 -63.4 kB 🟢 -14.6 kB 🟢 -12.8 kB
assets/WorkspaceSettingsPanelContent-C2GvLp-0.js (removed) 61.6 kB 🟢 -61.6 kB 🟢 -13.1 kB 🟢 -11.4 kB
assets/WorkspaceSettingsPanelContent-XwkhtlMT.js (new) 61.6 kB 🔴 +61.6 kB 🔴 +13.2 kB 🔴 +11.5 kB
assets/SubscriptionTransitionPreviewWorkspace-C752Fj-n.js (removed) 61.3 kB 🟢 -61.3 kB 🟢 -12.5 kB 🟢 -10.9 kB
assets/SubscriptionTransitionPreviewWorkspace-DfgGTTyT.js (new) 61.3 kB 🔴 +61.3 kB 🔴 +12.5 kB 🔴 +10.9 kB
assets/Preview3d-BOoVE2df.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.3 kB 🟢 -7.25 kB
assets/Preview3d-CPJSRWQ0.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.3 kB 🔴 +7.23 kB
assets/main-BEdL_imA.js (new) 46.9 kB 🔴 +46.9 kB 🔴 +13.8 kB 🔴 +12 kB
assets/main-Bjr-E_K4.js (removed) 46.9 kB 🟢 -46.9 kB 🟢 -13.8 kB 🟢 -12 kB
assets/SubscriptionRequiredDialogContentUnified-BHvDO_j-.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.43 kB 🔴 +8.21 kB
assets/SubscriptionRequiredDialogContentUnified-BXsRYIZ1.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.42 kB 🟢 -8.21 kB
assets/MembersPanelContent-Ddp8eBsQ.js (removed) 41.8 kB 🟢 -41.8 kB 🟢 -8.79 kB 🟢 -7.83 kB
assets/MembersPanelContent-IgbIxsVx.js (new) 41.8 kB 🔴 +41.8 kB 🔴 +8.79 kB 🔴 +7.83 kB
assets/WidgetBoundingBoxes-BIxVn2ri.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.13 kB
assets/WidgetBoundingBoxes-u3uVPr5q.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.13 kB
assets/WidgetPainter-BkXYlxFY.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.87 kB 🟢 -6.95 kB
assets/WidgetPainter-CPI9bHnC.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.87 kB 🔴 +6.97 kB
assets/Load3dViewerContent-CmD_1mp5.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.26 kB 🟢 -5.43 kB
assets/Load3dViewerContent-DyrsZGTX.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.26 kB 🔴 +5.43 kB
assets/SubscriptionPanelContentWorkspace-CoP4A-xi.js (removed) 29.5 kB 🟢 -29.5 kB 🟢 -6.83 kB 🟢 -6 kB
assets/SubscriptionPanelContentWorkspace-Dh3EQuTA.js (new) 29.5 kB 🔴 +29.5 kB 🔴 +6.83 kB 🔴 +6.01 kB
assets/SubscriptionRequiredDialogContent-C_ywIZ2U.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +6.14 kB 🔴 +5.39 kB
assets/SubscriptionRequiredDialogContent-C9POYpL5.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -6.14 kB 🟢 -5.41 kB
assets/SubscriptionRequiredDialogContentWorkspace-DfOn0Qh9.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.8 kB 🔴 +5.1 kB
assets/SubscriptionRequiredDialogContentWorkspace-eTqWpNty.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.8 kB 🟢 -5.1 kB
assets/load3d-CSIe2rRT.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.4 kB 🟢 -4.67 kB
assets/load3d-EjUBwpQS.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.4 kB 🔴 +4.67 kB
assets/CurrentUserPopoverWorkspace-1k3rsbw-.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.69 kB 🟢 -4.18 kB
assets/CurrentUserPopoverWorkspace-BKl0mUkd.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.69 kB 🔴 +4.18 kB
assets/SignInContent-C3E8QfMT.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.1 kB 🟢 -4.46 kB
assets/SignInContent-CwOfmobr.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.1 kB 🔴 +4.46 kB
assets/CreditsTile-BcXaMCLi.js (new) 17.2 kB 🔴 +17.2 kB 🔴 +4.55 kB 🔴 +4.02 kB
assets/CreditsTile-Xn815g2Y.js (removed) 17.2 kB 🟢 -17.2 kB 🟢 -4.55 kB 🟢 -4.03 kB
assets/WidgetRecordAudio-BcA4lpFx.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.59 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-DWCk6CfE.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.09 kB
assets/WidgetInputNumber-BKE5PPMv.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/WidgetInputNumber-D--LapOs.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetRange-B-BJA-6I.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.53 kB 🔴 +3.11 kB
assets/WidgetRange-BdHrSgSv.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.53 kB 🟢 -3.12 kB
assets/WaveAudioPlayer-b3EYeYF_.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.04 kB
assets/WaveAudioPlayer-ByPd29ci.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.05 kB
assets/WidgetCurve-3pvvTpbh.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.47 kB 🔴 +3.15 kB
assets/WidgetCurve-egCkmddM.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.15 kB
assets/TeamWorkspacesDialogContent-B7bnUMXG.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.96 kB 🔴 +2.63 kB
assets/TeamWorkspacesDialogContent-BbIBW5Fg.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/onboardingCloudRoutes-CpuQdUxo.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.78 kB 🔴 +2.41 kB
assets/onboardingCloudRoutes-CVRcm4tm.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.78 kB 🟢 -2.4 kB
assets/Load3DConfiguration-CToMSp3h.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.29 kB
assets/Load3DConfiguration-DRtmd6vo.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/WidgetImageCrop-CPSqydv9.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.65 kB 🔴 +2.34 kB
assets/WidgetImageCrop-tmXEwtKN.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.65 kB 🟢 -2.33 kB
assets/SetMemberCreditLimitDialogContent-BUw3bEJi.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/SetMemberCreditLimitDialogContent-DBVYlPYy.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/nodeTemplates-BLmIgdkq.js (new) 8.28 kB 🔴 +8.28 kB 🔴 +2.84 kB 🔴 +2.51 kB
assets/nodeTemplates-IdeJE6v-.js (removed) 8.28 kB 🟢 -8.28 kB 🟢 -2.84 kB 🟢 -2.5 kB
assets/NightlySurveyController-BqL7BwUT.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.24 kB
assets/NightlySurveyController-CChQ27Fj.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.56 kB 🔴 +2.24 kB
assets/WidgetWithControl-B0_sXLbr.js (removed) 6.35 kB 🟢 -6.35 kB 🟢 -2.57 kB 🟢 -2.29 kB
assets/WidgetWithControl-C26fXgz_.js (new) 6.35 kB 🔴 +6.35 kB 🔴 +2.58 kB 🔴 +2.3 kB
assets/tierBenefits-B1_i-XNq.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +1.96 kB 🔴 +1.71 kB
assets/tierBenefits-DSTBTZ1T.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/CancelSubscriptionDialogContent-Bjg5hfv4.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.74 kB
assets/CancelSubscriptionDialogContent-Dg1vT97u.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.74 kB
assets/load3dPreviewExtensions-DhO2l1Aw.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.59 kB
assets/load3dPreviewExtensions-DYWtLCiC.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/missingModelDownload-7iu4zSmz.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -2.07 kB 🟢 -1.81 kB
assets/missingModelDownload-N4JmLknS.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +2.07 kB 🔴 +1.81 kB
assets/launchCancellationFlow-BhBl84YK.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/launchCancellationFlow-iTfqGMof.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.56 kB
assets/CreateWorkspaceDialogContent-B_XGnQ-8.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-DEzekvt9.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/ChangeMemberRoleDialogContent-BwDlFLWk.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.63 kB 🔴 +1.43 kB
assets/ChangeMemberRoleDialogContent-DGH5RWjC.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.63 kB 🟢 -1.43 kB
assets/EditWorkspaceDialogContent-BBPKpRTx.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/EditWorkspaceDialogContent-V-tnSrDu.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/WidgetTextarea-CcsDIIIL.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/WidgetTextarea-CmYTALd8.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.87 kB 🟢 -1.63 kB
assets/saveMesh-BXdLE9Ub.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.34 kB
assets/saveMesh-DTxgA4vH.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.35 kB
assets/WorkspacePanelContent-CKy8zIXH.js (new) 4.72 kB 🔴 +4.72 kB 🔴 +1.6 kB 🔴 +1.4 kB
assets/WorkspacePanelContent-CXs99NxN.js (removed) 4.72 kB 🟢 -4.72 kB 🟢 -1.6 kB 🟢 -1.4 kB
assets/InviteMemberDialogContent-CC89r88c.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.58 kB 🔴 +1.38 kB
assets/InviteMemberDialogContent-DK-hTear.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.58 kB 🟢 -1.38 kB
assets/ValueControlPopover-B6izqV77.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.54 kB 🟢 -1.38 kB
assets/ValueControlPopover-dDZpE51p.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/DeleteWorkspaceDialogContent-BOTk25Pz.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.23 kB
assets/DeleteWorkspaceDialogContent-uwVaEXuD.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.23 kB
assets/LeaveWorkspaceDialogContent-CIBC__U1.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.18 kB
assets/LeaveWorkspaceDialogContent-Dt-_XGuK.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RemoveMemberDialogContent-B1Csqdth.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.34 kB 🟢 -1.15 kB
assets/RemoveMemberDialogContent-StVtcOWm.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.34 kB 🔴 +1.15 kB
assets/RevokeInviteDialogContent-DX39F1P9.js (removed) 3.56 kB 🟢 -3.56 kB 🟢 -1.35 kB 🟢 -1.17 kB
assets/RevokeInviteDialogContent-DYF_DO8K.js (new) 3.56 kB 🔴 +3.56 kB 🔴 +1.35 kB 🔴 +1.17 kB
assets/InviteMemberUpsellDialogContent-Bxm2utde.js (new) 3.44 kB 🔴 +3.44 kB 🔴 +1.23 kB 🔴 +1.08 kB
assets/InviteMemberUpsellDialogContent-DL6oLqbi.js (removed) 3.44 kB 🟢 -3.44 kB 🟢 -1.23 kB 🟢 -1.09 kB
assets/workspaceCheckoutTelemetry-D-vlvkkd.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.33 kB
assets/workspaceCheckoutTelemetry-DZJfkxkr.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.33 kB
assets/Media3DTop-DV3Ri-BF.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/Media3DTop-FttgDKx3.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/GlobalToast-C69tKNOB.js (removed) 3 kB 🟢 -3 kB 🟢 -1.22 kB 🟢 -1.04 kB
assets/GlobalToast-CWRDlvpX.js (new) 3 kB 🔴 +3 kB 🔴 +1.22 kB 🔴 +1.04 kB
assets/load3dAdvanced-B1jdwX_b.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +955 B
assets/load3dAdvanced-DZ1wamvn.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -955 B
assets/SubscribeToRun-DFPIncHH.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +900 B
assets/SubscribeToRun-l2cbsqaV.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -902 B
assets/MediaAudioTop-CuRAA3kR.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -804 B 🟢 -664 B
assets/MediaAudioTop-D2vWkM56.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +806 B 🔴 +664 B
assets/CloudRunButtonWrapper-CLv0FRk0.js (new) 1.05 kB 🔴 +1.05 kB 🔴 +511 B 🔴 +451 B
assets/CloudRunButtonWrapper-DZlMi7rY.js (removed) 1.05 kB 🟢 -1.05 kB 🟢 -513 B 🟢 -451 B
assets/cloudSessionCookie-Au4tNHGW.js (new) 933 B 🔴 +933 B 🔴 +432 B 🔴 +378 B
assets/cloudSessionCookie-BJee334T.js (removed) 933 B 🟢 -933 B 🟢 -431 B 🟢 -378 B
assets/cloudBadges-CeRbujpP.js (removed) 922 B 🟢 -922 B 🟢 -511 B 🟢 -436 B
assets/cloudBadges-CJgRxlZt.js (new) 922 B 🔴 +922 B 🔴 +512 B 🔴 +433 B
assets/Load3DAdvanced-C7VmAcHX.js (removed) 761 B 🟢 -761 B 🟢 -422 B 🟢 -357 B
assets/Load3DAdvanced-Cqm5z7AT.js (new) 761 B 🔴 +761 B 🔴 +422 B 🔴 +360 B
assets/nightlyBadges-BD_KhXYS.js (new) 411 B 🔴 +411 B 🔴 +270 B 🔴 +229 B
assets/nightlyBadges-DK3dI8EU.js (removed) 411 B 🟢 -411 B 🟢 -270 B 🟢 -231 B
assets/missingModelDownload-DOoWj0wd.js (removed) 371 B 🟢 -371 B 🟢 -205 B 🟢 -177 B
assets/missingModelDownload-RlTY8UEe.js (new) 371 B 🔴 +371 B 🔴 +205 B 🔴 +175 B
assets/SubscriptionPanelContentWorkspace-BEF-7bHv.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +90 B
assets/SubscriptionPanelContentWorkspace-CeWzgRu2.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -90 B
assets/Load3dViewerContent-aRm1kPqT.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/Load3dViewerContent-BajGNKM_.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -93 B
assets/Load3DAdvanced-CQSn5KBp.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +90 B
assets/Load3DAdvanced-Y-KVkITa.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -91 B
assets/WidgetLegacy-CvQYnBp8.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -102 B
assets/WidgetLegacy-msFLv0Bd.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +99 B
assets/workflowDraftStoreV2-BSpWqZDF.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +112 B
assets/workflowDraftStoreV2-DOWb2VLr.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -111 B
assets/Load3D-B6Ndnv5f.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +92 B
assets/Load3D-C-J9WFq9.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -81 B
assets/changeTracker-B6Dcbg9l.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -83 B
assets/changeTracker-D4VcYCep.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +85 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.4 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 49.5 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.4 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.5 MB heap
large-graph-pan: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.6 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 81.1 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.7 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.3 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.2 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 45.3 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 140ms TBT · 69.7 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 70.1 MB heap
vue-large-graph-idle: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 156.0 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 189ms TBT · 169.1 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.7 MB heap

⚠️ 6 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 452ms 538ms +19% ⚠️ z=4.6
canvas-zoom-sweep: task duration 362ms 378ms +5% ⚠️ z=2.2
large-graph-idle: task duration 657ms 695ms +6% ⚠️ z=2.8
large-graph-pan: task duration 1244ms 1336ms +7% ⚠️ z=5.9
minimap-idle: task duration 650ms 674ms +4% ⚠️ z=3.1
subgraph-idle: task duration 467ms 481ms +3% ⚠️ z=3.5
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 9ms 9ms +9% z=-1.5
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 9 -10% z=-3.8
canvas-idle: task duration 452ms 538ms +19% ⚠️ z=4.6
canvas-idle: script duration 14ms 25ms +72% z=-0.2
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 69.5 MB 69.4 MB -0%
canvas-idle: DOM nodes 20 18 -10% z=-3.6
canvas-idle: event listeners 4 4 +0% z=-1.6
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 4ms 4ms +4% z=0.4
canvas-mouse-sweep: style recalc duration 37ms 45ms +21% z=0.6
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 74 79 +6% z=-0.1
canvas-mouse-sweep: task duration 849ms 973ms +15% z=1.9
canvas-mouse-sweep: script duration 118ms 133ms +12% z=-0.4
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 52.2 MB 49.5 MB -5%
canvas-mouse-sweep: DOM nodes -277 -280 +1% z=-132.2
canvas-mouse-sweep: event listeners -148 -147 -1% z=-37.3
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=1.4
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms +4% z=-1.0
canvas-zoom-sweep: style recalc duration 16ms 18ms +11% z=-0.8
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 -2% z=-1.7
canvas-zoom-sweep: task duration 362ms 378ms +5% ⚠️ z=2.2
canvas-zoom-sweep: script duration 17ms 19ms +10% z=-2.8
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 72.3 MB 72.1 MB -0%
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 8ms 8ms +3% z=-2.4
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 11 +0% z=-4.2
dom-widget-clipping: task duration 364ms 395ms +9% z=1.9
dom-widget-clipping: script duration 56ms 62ms +10% z=-1.8
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 53.2 MB 53.4 MB +0%
dom-widget-clipping: DOM nodes 18 18 +0% z=-2.9
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 8ms 9ms +13% z=-3.4
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 9 +0% z=-8.3
large-graph-idle: task duration 657ms 695ms +6% ⚠️ z=2.8
large-graph-idle: script duration 101ms 110ms +9% z=0.7
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 63.6 MB 63.5 MB -0%
large-graph-idle: DOM nodes -281 -280 -0% z=-337.1
large-graph-idle: event listeners -142 -143 +1% z=-27.7
large-graph-pan: avg frame time 17ms 17ms +0% z=0.8
large-graph-pan: p95 frame time 17ms 17ms +1%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 12ms 14ms +16% z=-3.7
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-1.7
large-graph-pan: task duration 1244ms 1336ms +7% ⚠️ z=5.9
large-graph-pan: script duration 424ms 440ms +4% z=1.6
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.9 MB 62.6 MB -0%
large-graph-pan: DOM nodes -284 -282 -1% z=-182.4
large-graph-pan: event listeners -144 -143 -1% z=-178.6
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 7ms +6%
large-graph-zoom: style recalc duration 15ms 15ms +1%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 65 -2%
large-graph-zoom: task duration 1466ms 1475ms +1%
large-graph-zoom: script duration 512ms 529ms +3%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 57.5 MB 81.1 MB +41%
large-graph-zoom: DOM nodes -287 12 -104%
large-graph-zoom: event listeners -148 8 -105%
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 7ms -9% z=-3.5
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 8 -6% z=-3.0
minimap-idle: task duration 650ms 674ms +4% ⚠️ z=3.1
minimap-idle: script duration 101ms 107ms +6% z=0.9
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 65.1 MB 65.7 MB +1%
minimap-idle: DOM nodes -282 -284 +1% z=-221.3
minimap-idle: event listeners -144 -144 +0% z=-225.0
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.9
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 10ms 11ms +14% z=-1.8
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 -1% z=-2.5
subgraph-dom-widget-clipping: task duration 392ms 410ms +5% z=1.7
subgraph-dom-widget-clipping: script duration 116ms 120ms +3% z=-1.3
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 53.9 MB 53.3 MB -1%
subgraph-dom-widget-clipping: DOM nodes 20 19 -5% z=-2.8
subgraph-dom-widget-clipping: event listeners 6 6 +0% z=-1.7
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 9ms 9ms +6% z=-1.7
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 +0% z=-1.4
subgraph-idle: task duration 467ms 481ms +3% ⚠️ z=3.5
subgraph-idle: script duration 12ms 14ms +15% z=-2.3
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 44.5 MB 57.2 MB +29%
subgraph-idle: DOM nodes -281 -131 -54% z=-101.9
subgraph-idle: event listeners -148 -72 -51% 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 4ms +23% z=-0.7
subgraph-mouse-sweep: style recalc duration 34ms 37ms +9% z=-1.7
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 76 +1% z=-2.4
subgraph-mouse-sweep: task duration 763ms 814ms +7% z=0.7
subgraph-mouse-sweep: script duration 85ms 91ms +7% z=-1.4
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 46.0 MB 45.3 MB -1%
subgraph-mouse-sweep: DOM nodes -278 -279 +0% z=-154.8
subgraph-mouse-sweep: event listeners -148 -148 +0% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms -0%
subgraph-transition-enter: p95 frame time 17ms 17ms -0%
subgraph-transition-enter: layout duration 13ms 13ms +1%
subgraph-transition-enter: style recalc duration 30ms 31ms +2%
subgraph-transition-enter: layout count 14 14 +0%
subgraph-transition-enter: style recalc count 18 18 +0%
subgraph-transition-enter: task duration 925ms 939ms +1%
subgraph-transition-enter: script duration 31ms 33ms +6%
subgraph-transition-enter: TBT 149ms 140ms -6%
subgraph-transition-enter: heap used 94.8 MB 69.7 MB -26%
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 -0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 35ms 39ms +12%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 251 +0%
viewport-pan-sweep: task duration 4306ms 4713ms +9%
viewport-pan-sweep: script duration 1334ms 1489ms +12%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 66.6 MB 70.1 MB +5%
viewport-pan-sweep: DOM nodes -281 -280 -0%
viewport-pan-sweep: event listeners -128 -126 -2%
vue-large-graph-idle: avg frame time 18ms 18ms -0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 16542ms 17087ms +3%
vue-large-graph-idle: script duration 532ms 557ms +5%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 159.1 MB 156.0 MB -2%
vue-large-graph-idle: DOM nodes -8312 -8314 +0%
vue-large-graph-idle: event listeners -16387 -16386 -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 15ms 16ms +10%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 137 141 +3%
vue-large-graph-pan: task duration 20194ms 20568ms +2%
vue-large-graph-pan: script duration 903ms 887ms -2%
vue-large-graph-pan: TBT 102ms 189ms +85%
vue-large-graph-pan: heap used 169.0 MB 169.1 MB +0%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16385 -16384 -0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.1
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 1ms 1ms -27% z=-5.3
workflow-execution: style recalc duration 21ms 18ms -15% z=-3.0
workflow-execution: layout count 3 3 -17% z=-4.5
workflow-execution: style recalc count 14 11 -21% z=-3.3
workflow-execution: task duration 112ms 103ms -8% z=-1.8
workflow-execution: script duration 9ms 9ms +2% z=-6.6
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 48.6 MB 57.7 MB +19%
workflow-execution: DOM nodes 121 119 -2% z=-5.9
workflow-execution: event listeners 65 50 -23% z=-0.4
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-07-31T08:07:23.948Z",
  "gitSha": "0e779d739b26045d9feff3bee7a4cc40d5af968c",
  "branch": "glary/fe-853-subgraph-resize-unified",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2123.4310000000105,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.504999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 614.1270000000001,
      "heapDeltaBytes": 5213988,
      "heapUsedBytes": 73109964,
      "domNodes": 18,
      "jsHeapTotalBytes": 20049920,
      "scriptDurationMs": 33.879,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-idle",
      "durationMs": 2021.1439999999925,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.415000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 462.125,
      "heapDeltaBytes": 4656892,
      "heapUsedBytes": 72450332,
      "domNodes": 18,
      "jsHeapTotalBytes": 20049920,
      "scriptDurationMs": 15.968,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2041.667000000018,
      "styleRecalcs": 79,
      "styleRecalcDurationMs": 45.29900000000001,
      "layouts": 12,
      "layoutDurationMs": 3.4230000000000005,
      "taskDurationMs": 1010.1320000000001,
      "heapDeltaBytes": -14499608,
      "heapUsedBytes": 53396640,
      "domNodes": -278,
      "jsHeapTotalBytes": 21749760,
      "scriptDurationMs": 137.67499999999998,
      "eventListeners": -146,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1912.4700000000416,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 43.815,
      "layouts": 12,
      "layoutDurationMs": 3.9559999999999995,
      "taskDurationMs": 936.227,
      "heapDeltaBytes": -17429604,
      "heapUsedBytes": 50469948,
      "domNodes": -281,
      "jsHeapTotalBytes": 20439040,
      "scriptDurationMs": 128.1,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1737.5450000000114,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 20.477999999999994,
      "layouts": 6,
      "layoutDurationMs": 0.6880000000000001,
      "taskDurationMs": 396.02700000000004,
      "heapDeltaBytes": 7752144,
      "heapUsedBytes": 75435280,
      "domNodes": 77,
      "jsHeapTotalBytes": 20574208,
      "scriptDurationMs": 20.310000000000002,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1725.0639999999748,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 15.325999999999999,
      "layouts": 6,
      "layoutDurationMs": 0.5090000000000001,
      "taskDurationMs": 360.51,
      "heapDeltaBytes": 7779648,
      "heapUsedBytes": 75769272,
      "domNodes": 75,
      "jsHeapTotalBytes": 19787776,
      "scriptDurationMs": 17.134,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 595.454999999987,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.094,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 386.732,
      "heapDeltaBytes": -11988700,
      "heapUsedBytes": 55968924,
      "domNodes": 18,
      "jsHeapTotalBytes": 21098496,
      "scriptDurationMs": 59.142,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 605.1049999999805,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.841999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 403.76099999999997,
      "heapDeltaBytes": -12007912,
      "heapUsedBytes": 55967136,
      "domNodes": 18,
      "jsHeapTotalBytes": 22147072,
      "scriptDurationMs": 64.79799999999999,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2026.6200000000367,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.861999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 692.806,
      "heapDeltaBytes": 7913452,
      "heapUsedBytes": 66378848,
      "domNodes": -280,
      "jsHeapTotalBytes": 4517888,
      "scriptDurationMs": 109.808,
      "eventListeners": -142,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2029.0410000000065,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.418999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 696.7319999999999,
      "heapDeltaBytes": 7932560,
      "heapUsedBytes": 66731736,
      "domNodes": -280,
      "jsHeapTotalBytes": 4517888,
      "scriptDurationMs": 110.406,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2167.041999999981,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 14.300000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1310.332,
      "heapDeltaBytes": 5294468,
      "heapUsedBytes": 65024780,
      "domNodes": -282,
      "jsHeapTotalBytes": 4743168,
      "scriptDurationMs": 426.836,
      "eventListeners": -142,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2254.238999999984,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 14.395999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1360.7089999999998,
      "heapDeltaBytes": 5915336,
      "heapUsedBytes": 66291780,
      "domNodes": -282,
      "jsHeapTotalBytes": 4743168,
      "scriptDurationMs": 453.822,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3162.719999999979,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 14.799000000000003,
      "layouts": 60,
      "layoutDurationMs": 7.348999999999999,
      "taskDurationMs": 1470.408,
      "heapDeltaBytes": 23453804,
      "heapUsedBytes": 84951680,
      "domNodes": 12,
      "jsHeapTotalBytes": 8388608,
      "scriptDurationMs": 531.5999999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3180.8600000000524,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 14.351000000000003,
      "layouts": 60,
      "layoutDurationMs": 7.361999999999998,
      "taskDurationMs": 1479.533,
      "heapDeltaBytes": 23685996,
      "heapUsedBytes": 85138952,
      "domNodes": 12,
      "jsHeapTotalBytes": 7340032,
      "scriptDurationMs": 525.858,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2040.7149999999774,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 6.419000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 706.1440000000001,
      "heapDeltaBytes": 8135472,
      "heapUsedBytes": 69213436,
      "domNodes": -284,
      "jsHeapTotalBytes": 4255744,
      "scriptDurationMs": 116.713,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2033.7500000000546,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 6.919000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 642.7130000000001,
      "heapDeltaBytes": 7891524,
      "heapUsedBytes": 68636492,
      "domNodes": -283,
      "jsHeapTotalBytes": 4255744,
      "scriptDurationMs": 97.488,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 607.6180000000022,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.900000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 420.62999999999994,
      "heapDeltaBytes": -11929128,
      "heapUsedBytes": 55910720,
      "domNodes": 18,
      "jsHeapTotalBytes": 22671360,
      "scriptDurationMs": 119.882,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 598.3610000000681,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.091,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 399.134,
      "heapDeltaBytes": -12096324,
      "heapUsedBytes": 55857352,
      "domNodes": 20,
      "jsHeapTotalBytes": 22671360,
      "scriptDurationMs": 119.90799999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2039.9080000000254,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.705000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 509.5919999999999,
      "heapDeltaBytes": -20994460,
      "heapUsedBytes": 47011472,
      "domNodes": -281,
      "jsHeapTotalBytes": 20439040,
      "scriptDurationMs": 15.319,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2008.7859999999864,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.498999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 451.604,
      "heapDeltaBytes": 4958696,
      "heapUsedBytes": 73008176,
      "domNodes": 20,
      "jsHeapTotalBytes": 20574208,
      "scriptDurationMs": 12.772,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1734.8079999999868,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 37.318999999999996,
      "layouts": 16,
      "layoutDurationMs": 4.861000000000001,
      "taskDurationMs": 814.36,
      "heapDeltaBytes": -19050532,
      "heapUsedBytes": 48805836,
      "domNodes": -278,
      "jsHeapTotalBytes": 21225472,
      "scriptDurationMs": 91.347,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1738.5710000000927,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 36.169,
      "layouts": 16,
      "layoutDurationMs": 4.074000000000001,
      "taskDurationMs": 813.309,
      "heapDeltaBytes": -21696952,
      "heapUsedBytes": 46264144,
      "domNodes": -280,
      "jsHeapTotalBytes": 20439040,
      "scriptDurationMs": 91.594,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1385.797000000025,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 30.560000000000002,
      "layouts": 14,
      "layoutDurationMs": 12.738,
      "taskDurationMs": 938.9250000000002,
      "heapDeltaBytes": 3692924,
      "heapUsedBytes": 73105752,
      "domNodes": 13673,
      "jsHeapTotalBytes": 16515072,
      "scriptDurationMs": 33.4,
      "eventListeners": 2371,
      "totalBlockingTimeMs": 140,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8633.75000000002,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 38.961,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4940.733,
      "heapDeltaBytes": 18109008,
      "heapUsedBytes": 77076760,
      "domNodes": -281,
      "jsHeapTotalBytes": 8904704,
      "scriptDurationMs": 1573.737,
      "eventListeners": -126,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8294.401999999991,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 39.334999999999994,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4485.853999999999,
      "heapDeltaBytes": 9030448,
      "heapUsedBytes": 69927860,
      "domNodes": -279,
      "jsHeapTotalBytes": 7593984,
      "scriptDurationMs": 1405.1860000000001,
      "eventListeners": -126,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17326.409000000014,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17287.434,
      "heapDeltaBytes": -48007532,
      "heapUsedBytes": 160204028,
      "domNodes": -8312,
      "jsHeapTotalBytes": -13574144,
      "scriptDurationMs": 567.677,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.77333333333336,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 16941.093999999906,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16886.933999999997,
      "heapDeltaBytes": -39907000,
      "heapUsedBytes": 166926808,
      "domNodes": -8316,
      "jsHeapTotalBytes": -16195584,
      "scriptDurationMs": 545.534,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20875.823999999964,
      "styleRecalcs": 145,
      "styleRecalcDurationMs": 16.91300000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20821.009000000002,
      "heapDeltaBytes": -32011156,
      "heapUsedBytes": 177032392,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15478784,
      "scriptDurationMs": 897.486,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 228,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20359.857000000033,
      "styleRecalcs": 137,
      "styleRecalcDurationMs": 16.061999999999994,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20315.918999999998,
      "heapDeltaBytes": -30632352,
      "heapUsedBytes": 177699532,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14430208,
      "scriptDurationMs": 876.032,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 149,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 477.98099999999977,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 21.159000000000002,
      "layouts": 4,
      "layoutDurationMs": 1.292,
      "taskDurationMs": 130.008,
      "heapDeltaBytes": -15904880,
      "heapUsedBytes": 50996144,
      "domNodes": 130,
      "jsHeapTotalBytes": 7991296,
      "scriptDurationMs": 11.818999999999999,
      "eventListeners": 67,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 110.25200000005952,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 14.274999999999999,
      "layouts": 1,
      "layoutDurationMs": 0.27599999999999997,
      "taskDurationMs": 76.084,
      "heapDeltaBytes": 2946180,
      "heapUsedBytes": 70097460,
      "domNodes": 108,
      "jsHeapTotalBytes": 2621440,
      "scriptDurationMs": 7.000999999999999,
      "eventListeners": 33,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000728
    }
  ]
}

@glary-bot

glary-bot Bot commented Jul 31, 2026

Copy link
Copy Markdown

@christian-byrne this is the single unified PR against main you asked for — fix + regression tests in one place. Requesting your manual review pass.

I attempted to add you as assignee and as requested reviewer again; both still return 403 Resource not accessible by integration (the bot's GitHub App installation has comment permissions only), so you'll need to self-assign.

What changed vs the earlier PR chain

#14374, #14415 and #14418 are all superseded and can be closed. I can't post on them — my comment tooling resolves to the newest PR in the repo, which is now this one — but mentioning them in the description above creates a cross-reference in each of their timelines.

Re-verified after the rebase onto current main

  • 8 e2e tests passed (2 new subgraphEditWidgetsResize + 6 subgraphResizePreservation)
  • 60 unit tests passed
  • pnpm typecheck, pnpm typecheck:browser, ESLint, oxlint, oxfmt --check, pnpm knip — all clean
  • Reverting expandToFitContent() back to computeSize(node.size) on this branch makes the new tests fail expected 506.0625, received 225, confirming they detect the real regression

CodeRabbit approved both #14415 and #14418; its one actionable finding (vacuous-pass risk on the promotion test) is fixed here. Since this PR targets main, CodeRabbit should auto-review it this time.

@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: fda9afd0-89d0-493f-8d45-3e853cf324bb

📥 Commits

Reviewing files that changed from the base of the PR and between daeffec and c74a4e9.

📒 Files selected for processing (5)
  • browser_tests/fixtures/components/ContextMenu.ts
  • browser_tests/fixtures/helpers/NodeOperationsHelper.ts
  • browser_tests/fixtures/helpers/SubgraphHelper.ts
  • browser_tests/tests/subgraph/subgraphEditWidgetsResize.spec.ts
  • src/components/rightSidePanel/subgraph/SubgraphEditor.vue

📝 Walkthrough

Walkthrough

Subgraph promotion and editing flows preserve manually resized node dimensions. Rendering expands content without recomputing existing size. Unit and browser tests cover promotion, demotion, pruning, nested subgraphs, and selection-toolbox editing.

Changes

Subgraph resize preservation

Layer / File(s) Summary
Preserve resized subgraph dimensions
src/components/rightSidePanel/subgraph/SubgraphEditor.vue, src/core/graph/subgraph/promotionUtils.ts
Promotion and rendering refreshes expand content without recomputing the current node size.
Validate promotion sizing behavior
src/components/rightSidePanel/subgraph/SubgraphEditor.test.ts, src/core/graph/subgraph/promotionUtils.test.ts
Unit tests cover promotion, demotion, pruning, nested hosts, multiple widgets, editor mounting, and minimum-size expansion.
Exercise resize preservation workflows
browser_tests/fixtures/components/*, browser_tests/fixtures/helpers/*, browser_tests/tests/subgraph/*
Browser fixtures support disabled-element context menus, selection-toolbox editing, and drag resizing. Tests verify dimensions across editing, promotion, demotion, and nested-subgraph flows.

Estimated code review effort: 4 (Complex) | ~45 minutes

Possibly related PRs

Suggested labels: core/1.48

Suggested reviewers: christian-byrne

🚥 Pre-merge checks | ✅ 5 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Adr Compliance For Entity/Litegraph Changes ⚠️ Warning The diff adds direct graph-entity mutation host.size = [600, 400] in promotionUtils.test.ts, outside a store or command, matching ADR 0003's flagged pattern. Use a command/store-based fixture setup, or document why this test-only mutation is an accepted exception under Proposed ADR 0003 (docs/adr/0003-crdt-based-layout-system.md).
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the primary fix: preserving subgraph node size during widget editing and promotion.
Description check ✅ Passed The description explains the bug, fix, affected areas, regression coverage, verification results, review focus, and screenshots.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
End-To-End Regression Coverage For Fixes ✅ Passed The title uses bug-fix language, but the PR changes multiple frontend files under src/ and adds Playwright coverage under browser_tests/.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch glary/fe-853-subgraph-resize-unified

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/components/rightSidePanel/subgraph/SubgraphEditor.vue (1)

230-237: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Consider reusing the module-level refreshPromotedWidgetRendering instead of duplicating it here.

This function is structurally identical to refreshPromotedWidgetRendering in src/core/graph/subgraph/promotionUtils.ts (Lines 260-265): both call expandToFitContent(), setDirtyCanvas(true, true), and dirty the canvas store. This PR had to apply the identical one-line fix in both places, which shows the duplication carries real drift risk: a future change to one copy can silently miss the other.

Export the promotionUtils.ts version and call it here with [node] instead of keeping a local copy.

♻️ Proposed refactor
-function refreshPromotedWidgetRendering() {
-  const node = activeNode.value
-  if (!node) return
-
-  node.expandToFitContent()
-  node.setDirtyCanvas(true, true)
-  canvasStore.canvas?.setDirty(true, true)
-}
+function refreshPromotedWidgetRendering() {
+  const node = activeNode.value
+  if (!node) return
+  refreshPromotedWidgetRenderingForParents([node])
+}

And in promotionUtils.ts, add export to refreshPromotedWidgetRendering (renaming if desired to avoid a naming collision with the local wrapper).

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

In `@src/components/rightSidePanel/subgraph/SubgraphEditor.vue` around lines 230 -
237, Remove the local refreshPromotedWidgetRendering implementation in
SubgraphEditor.vue and import the shared function from promotionUtils.ts. Export
the existing promotionUtils.ts function, then invoke it with the active node as
the [node] argument while preserving the current no-active-node guard.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@browser_tests/tests/subgraph/subgraphResizePreservation.spec.ts`:
- Around line 100-118: Add await comfyPage.nextFrame() immediately after each
resizeFromCorner() call in the affected tests, before capturing boundingBox(),
including the cases around the resizedBox and afterBox measurements. Match the
existing sibling-test synchronization pattern while leaving the assertions
unchanged.

---

Outside diff comments:
In `@src/components/rightSidePanel/subgraph/SubgraphEditor.vue`:
- Around line 230-237: Remove the local refreshPromotedWidgetRendering
implementation in SubgraphEditor.vue and import the shared function from
promotionUtils.ts. Export the existing promotionUtils.ts function, then invoke
it with the active node as the [node] argument while preserving the current
no-active-node guard.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 658986d1-14d1-41eb-a86f-1627f936b346

📥 Commits

Reviewing files that changed from the base of the PR and between 3c8a9b6 and 21381df.

📒 Files selected for processing (10)
  • browser_tests/fixtures/components/ContextMenu.ts
  • browser_tests/fixtures/components/SubgraphEditor.ts
  • browser_tests/fixtures/helpers/NodeOperationsHelper.ts
  • browser_tests/fixtures/helpers/SubgraphHelper.ts
  • browser_tests/tests/subgraph/subgraphEditWidgetsResize.spec.ts
  • browser_tests/tests/subgraph/subgraphResizePreservation.spec.ts
  • src/components/rightSidePanel/subgraph/SubgraphEditor.test.ts
  • src/components/rightSidePanel/subgraph/SubgraphEditor.vue
  • src/core/graph/subgraph/promotionUtils.test.ts
  • src/core/graph/subgraph/promotionUtils.ts

Comment thread browser_tests/tests/subgraph/subgraphResizePreservation.spec.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   #14461      +/-   ##
==========================================
+ Coverage   78.24%   78.61%   +0.37%     
==========================================
  Files        1767     1767              
  Lines      110746   102864    -7882     
  Branches    35074    32373    -2701     
==========================================
- Hits        86655    80870    -5785     
+ Misses      23544    21572    -1972     
+ Partials      547      422     -125     
Flag Coverage Δ
unit 70.22% <100.00%> (-0.01%) ⬇️

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

Files with missing lines Coverage Δ
...ponents/rightSidePanel/subgraph/SubgraphEditor.vue 86.27% <100.00%> (-0.14%) ⬇️
src/core/graph/subgraph/promotionUtils.ts 89.84% <100.00%> (ø)

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

Addresses CodeRabbit review on #14461:

- SubgraphEditor.vue duplicated promotionUtils' refreshPromotedWidgetRendering
  body, which is why the FE-853 one-line fix had to be applied twice. Export
  the shared helper and delegate to it so the two cannot drift again.
- Two tests in subgraphResizePreservation read boundingBox() straight after
  resizeFromCorner() while their siblings await nextFrame() first, risking an
  unsettled layout read. Added the missing waits.
@glary-bot

glary-bot Bot commented Jul 31, 2026

Copy link
Copy Markdown

Both CodeRabbit findings addressed in daeffec.

1. Duplicated refreshPromotedWidgetRendering (SubgraphEditor.vue) — agreed, deduped.

The drift argument is the convincing part: this PR is itself the evidence, since the FE-853 one-line fix had to be applied to both copies independently. A third call site or a future change would very likely miss one.

SubgraphEditor.vue already imported from promotionUtils, so this adds no new coupling — just an export and a delegation:

function refreshPromotedWidgetRendering() {
  const node = activeNode.value
  if (!node) return

  refreshPromotedWidgetRenderingForNodes([node])
}

I kept the thin local wrapper rather than inlining [node] at all three call sites, since it holds the activeNode guard. Imported under an alias to avoid shadowing. canvasStore is still used elsewhere in the file, so no dead import.

I did not touch the third expandToFitContent() call in promoteRecommendedWidgets (promotionUtils.ts:629) — routing it through the shared helper would additionally trigger setDirtyCanvas and a canvas store dirty, which is a behavior change beyond this fix. Happy to do it separately if you want full consistency.

2. Missing nextFrame() before boundingBox() — agreed, fixed. Details in the inline reply.

Re-verified after these changes

  • 13 e2e passed — 2 subgraphEditWidgetsResize, 6 subgraphResizePreservation, 5 subgraphPromotedWidgetPanel
  • 60 unit passedpromotionUtils.test.ts + SubgraphEditor.test.ts, which cover both functions I touched
  • pnpm typecheck, ESLint, oxlint, oxfmt --check, pnpm knip — all clean

The unit and e2e coverage over both edited functions is what gives me confidence the dedupe is behavior-preserving rather than just type-clean.

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 31, 2026
@DrJKL
DrJKL marked this pull request as ready for review July 31, 2026 05:10
@DrJKL
DrJKL requested a review from a team July 31, 2026 05:10
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. 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

* handle. The returned size is read from the graph model, not a DOM bounding
* box, so it stays comparable across zoom and side-panel layout changes.
*/
async growNodeByDrag(

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.

Should this be using expects or just throws?

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Throws — you're right, changed in c74a4e9.

Assertions in a fixture helper attribute failures to the fixture rather than the test, and blur the line between "the helper couldn't do its job" and "the behaviour under test is wrong". Both checks here are the former, so they're now throws:

const [nodeRef] = await this.getNodeRefsByTitle(title)
if (!nodeRef) throw new Error(`No node titled "${title}" on the canvas`)
...
if (size.width <= sizeBefore.width || size.height <= sizeBefore.height) {
  throw new Error(
    `Resize drag did not enlarge "${title}": ${sizeBefore.width}x${sizeBefore.height} -> ${size.width}x${size.height}`
  )
}

Collapsed the two size expects into a single throw that reports before and after, which is more useful than the two separate messages were. Also dropped the now-unused expect import from the file.

widgetName: string
): Promise<void> {
const widget = nodeLocator.getByLabel(widgetName, { exact: true })
// A promoted widget's own display is disabled/readonly (its value comes

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 we make this expressed in code rather than comments?

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Done in c74a4e9 — and chasing this turned up a lint violation, so thanks for pushing on it.

The comment existed to explain a force: true boolean flag. Replaced both with a named method, so the call site reads for itself and openFor goes back to its original signature:

await this.comfyPage.contextMenu
  .openForDisabledElement(widget)
  .then((m) => m.clickMenuItemExact(`Un-Promote Widget: ${widgetName}`))

While implementing it, the pre-commit hook rejected { force: true } under playwright/no-force-option, which is "error" in .oxlintrc.json. The original code slipped past it only because it passed force as a variable rather than a literal. So rather than reintroduce a forced click, openForDisabledElement dispatches the event directly:

async openForDisabledElement(locator: Locator): Promise<this> {
  await locator.dispatchEvent('contextmenu', { button: 2 })
  await expect(this.anyMenu).toBeVisible()
  return this
}

That reaches the same @contextmenu handler the widgets bind in NodeWidgets.vue, so it exercises the real path, needs no explanatory comment, and is lint-clean.

Verified against the two tests that go through unpromoteWidget — "Un-promoting a widget preserves a user-resized subgraph node" and the nested "Demoting a nested promotion…" — plus the rest of the file: 8/8 passing.

* by the "Edit Subgraph Widgets" selection-toolbox button or by promoting a
* widget from inside the subgraph — discarding the size the user set.
*
* https://linear.app/comfyorg/issue/FE-853

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.

No need to link linear. Can be shorter comment. Prefer playwright test annotation over docstring IMO

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Agreed on all three — done in c74a4e9. The 8-line docstring and the Linear URL are gone, replaced by a Playwright annotation on the describe:

test.describe(
  'Subgraph node size across widget editing',
  {
    tag: ['@subgraph', '@node', '@widget', '@vue-nodes'],
    annotation: {
      type: 'issue',
      description:
        'FE-853: widget editing collapsed a user-resized subgraph node to its minimum size'
    }
  },
  () => {

Better than the docstring in that it surfaces in the HTML report and via TestCase.annotations, instead of only being visible to someone opening the file.

Used the declarative annotation field in the details object rather than test.info().annotations.push(...) (the pattern in workflowPersistence.spec.ts) since it's static metadata — confirmed supported on the pinned Playwright 1.61.1.

Kept the issue key in the description but not the URL, per your point.

isRecommendedWidget,
promoteWidget,
pruneDisconnected,
refreshPromotedWidgetRendering as refreshPromotedWidgetRenderingForNodes,

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.

Avoid alias importing

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Alias removed in c74a4e9. The import is now plain:

refreshPromotedWidgetRendering,

The alias only existed because the local wrapper had the same name. Renamed that wrapper to refreshActiveNodeRendering, which is more accurate anyway — its whole job is resolving activeNode and delegating:

function refreshActiveNodeRendering() {
  const node = activeNode.value
  if (!node) return

  refreshPromotedWidgetRendering([node])
}

Updated its three call sites in the file. Confirmed by the 5 subgraphPromotedWidgetPanel e2e tests and the 60 unit tests over SubgraphEditor / promotionUtils.

@DrJKL DrJKL added needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch core/1.48 labels Jul 31, 2026
@DrJKL
DrJKL added this pull request to the merge queue Jul 31, 2026
Merged via the queue into main with commit 15a8601 Jul 31, 2026
98 checks passed
@DrJKL
DrJKL deleted the glary/fe-853-subgraph-resize-unified branch July 31, 2026 17:18
@comfy-pr-bot

Copy link
Copy Markdown
Member

@DrJKL Successfully backported to #14491

@comfy-pr-bot

Copy link
Copy Markdown
Member

@DrJKL Successfully backported to #14492

@github-actions github-actions Bot removed the needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch label Jul 31, 2026
comfy-pr-bot added a commit that referenced this pull request Jul 31, 2026
… promoting widgets (FE-853) (#14491)

Backport of #14461 to `core/1.48`

Automatically created by backport workflow.

Co-authored-by: Alexander Brown <drjkl@comfy.org>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Glary-Bot <glary-bot@users.noreply.github.com>
comfy-pr-bot added a commit that referenced this pull request Jul 31, 2026
…r promoting widgets (FE-853) (#14492)

Backport of #14461 to `cloud/1.48`

Automatically created by backport workflow.

Co-authored-by: Alexander Brown <drjkl@comfy.org>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Glary-Bot <glary-bot@users.noreply.github.com>
@comfy-pr-bot comfy-pr-bot added the released:cloud PR has been released to cloud label Aug 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

released:cloud PR has been released to cloud size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants