Skip to content

fix(billing): refresh workspace billing status after completed top-up (FE-932)#12787

Merged
dante01yoon merged 2 commits into
mainfrom
jaewon/fe-932-refresh-workspace-billing-status-after-completed-top-up
Jun 19, 2026
Merged

fix(billing): refresh workspace billing status after completed top-up (FE-932)#12787
dante01yoon merged 2 commits into
mainfrom
jaewon/fe-932-refresh-workspace-billing-status-after-completed-top-up

Conversation

@dante01yoon

Copy link
Copy Markdown
Collaborator

Summary

A completed workspace top-up refreshed only the balance, leaving billing status — and subscription.hasFunds (derived from statusData.has_funds) — stale until the next status fetch. The completed handler now refreshes both.

Changes

  • What: TopUpCreditsDialogContentWorkspace.vue completed branch — await fetchBalance()await Promise.all([fetchBalance(), fetchStatus()]) (both already exposed on useBillingContext()).
  • Breaking: none.

Review Focus

  • Pre-existing bug (predates the B2 facade; main's top-up already called fetchBalance only). Test validity proven by reverting to balance-only → the completed case goes red on the fetchStatus assertion.
  • Tests: completed → both refresh; pending / failed → neither (3 cases). typecheck / oxlint / eslint / stylelint / oxfmt / knip clean.

Fixes FE-932

@dante01yoon dante01yoon requested a review from a team June 11, 2026 09:36
@dosubot dosubot Bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Jun 11, 2026
@coderabbitai

coderabbitai Bot commented Jun 11, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

This PR updates the top-up credits dialog component to refresh both billing balance and status after successful top-up purchases, and adds a comprehensive test suite validating the refresh behavior across completed, pending, and failed top-up states.

Changes

Top-Up Billing Status Refresh

Layer / File(s) Summary
Component billing refresh enhancement
src/platform/workspace/components/TopUpCreditsDialogContentWorkspace.vue
Component extracts fetchStatus from billing context alongside fetchBalance, and after a successful top-up (status completed) refreshes both balance and status concurrently instead of only balance.
Top-up dialog test suite
src/platform/workspace/components/TopUpCreditsDialogContentWorkspace.test.ts
Test harness mocks billing context fetchers, workspace API, operation store, settings dialog, telemetry, and toast. Validates that completed top-ups refresh both balance and status while opening settings dialog, and that pending/failed top-ups trigger operation tracking without data refresh.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Poem

A rabbit hops through billing's flow,
Now balance and status glow,
With tests that mock and click with care,
Completed, pending—states laid bare! 🐰✨


Caution

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

  • Ignore (reviewers only)

❌ Failed checks (1 error, 1 warning)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❌ Error PR title uses "fix" (bug-fix signal), changes src/ files but lacks browser_tests/ changes and provides no explanation for why E2E test isn't included. Add a Playwright regression test under browser_tests/ or add a concrete explanation in the PR description of why end-to-end test is not practical.
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title 'fix(billing): refresh workspace billing status after completed top-up (FE-932)' clearly and specifically summarizes the main change: addressing a billing status refresh issue after a completed top-up.
Description check ✅ Passed The description includes all required template sections: Summary explains the problem and solution, Changes details what was modified, Review Focus covers test coverage and validation, and the issue reference 'Fixes FE-932' is included.
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.
Adr Compliance For Entity/Litegraph Changes ✅ Passed Check not applicable: PR modifies only workspace billing components (TopUpCreditsDialogContentWorkspace.test.ts and .vue), which are not under src/lib/litegraph/, src/ecs/, or graph entity-related...
✨ 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 jaewon/fe-932-refresh-workspace-billing-status-after-completed-top-up

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

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

Inline comments:
In
`@src/platform/workspace/components/TopUpCreditsDialogContentWorkspace.test.ts`:
- Around line 8-15: The test duplicates the TopupStatus and CreateTopupResponse
types which prevents importing the canonical types; export or re-export these
types from the existing workspaceApi.ts (e.g., export type TopupStatus = ... and
export interface CreateTopupResponse {...} or re-export them from a shared types
module) and update the test to import TopupStatus and CreateTopupResponse from
that single source, then remove the local duplicate definitions in
TopUpCreditsDialogContentWorkspace.test.ts to keep a single source of truth.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: c80c2ccf-3b54-42b1-94c3-f3830d4ba2ed

📥 Commits

Reviewing files that changed from the base of the PR and between 603914e and 51a064b.

📒 Files selected for processing (2)
  • src/platform/workspace/components/TopUpCreditsDialogContentWorkspace.test.ts
  • src/platform/workspace/components/TopUpCreditsDialogContentWorkspace.vue

Comment thread src/platform/workspace/components/TopUpCreditsDialogContentWorkspace.test.ts Outdated
@codecov

codecov Bot commented Jun 11, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@             Coverage Diff             @@
##             main   #12787       +/-   ##
===========================================
- Coverage   77.03%   62.22%   -14.81%     
===========================================
  Files        1570     1458      -112     
  Lines      113907    75080    -38827     
  Branches    37102    21151    -15951     
===========================================
- Hits        87748    46720    -41028     
- Misses      25207    28015     +2808     
+ Partials      952      345      -607     
Flag Coverage Δ
e2e ?
unit 62.22% <100.00%> (+0.07%) ⬆️

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

Files with missing lines Coverage Δ
.../components/TopUpCreditsDialogContentWorkspace.vue 69.23% <100.00%> (+45.60%) ⬆️

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

Resolve TopUpCreditsDialogContentWorkspace conflict: combine main's
useBillingContext topup() with this branch's fetchStatus so completed
top-ups refresh both balance and status. Update the test to mock topup()
on the billing context (main moved purchasing onto the context) and
import the canonical CreateTopupResponse type instead of duplicating it.
@github-actions

github-actions Bot commented Jun 18, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 06/18/2026, 10:54:44 AM UTC

Links

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

📊 Browser Reports
  • chromium: View Report (✅ 1656 / ❌ 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: 7.45 MB gzip 🟢 -9 B

Details

Summary

  • Raw size: 31.3 MB baseline 31.3 MB — 🔴 +43 B
  • Gzip: 7.45 MB baseline 7.45 MB — 🟢 -9 B
  • Brotli: 5.1 MB baseline 5.1 MB — 🟢 -296 B
  • Bundles: 275 current • 275 baseline • 125 added / 125 removed

Category Glance
Utilities & Hooks 🔴 +43 B (3.3 MB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Other ⚪ 0 B (10.4 MB) · Graph Workspace ⚪ 0 B (1.26 MB) · Panels & Settings ⚪ 0 B (523 kB) · Data & Services ⚪ 0 B (266 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-9715YUg5.js (new) 45.8 kB 🔴 +45.8 kB 🔴 +13.5 kB 🔴 +11.7 kB
assets/index-D-fOx9gr.js (removed) 45.8 kB 🟢 -45.8 kB 🟢 -13.5 kB 🟢 -11.7 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-C2-ScurK.js (new) 1.26 MB 🔴 +1.26 MB 🔴 +269 kB 🔴 +203 kB
assets/GraphView-C5fFFua3.js (removed) 1.26 MB 🟢 -1.26 MB 🟢 -269 kB 🟢 -203 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-CB0M-09r.js (new) 19.5 kB 🔴 +19.5 kB 🔴 +5.05 kB 🔴 +4.48 kB
assets/CloudSurveyView-DTsd5kHK.js (removed) 19.5 kB 🟢 -19.5 kB 🟢 -5.05 kB 🟢 -4.48 kB
assets/CloudLoginView-Bazruixx.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.68 kB
assets/CloudLoginView-C49F3qI7.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.06 kB 🔴 +2.69 kB
assets/CloudSignupView-BARW3Dbi.js (removed) 9.7 kB 🟢 -9.7 kB 🟢 -2.71 kB 🟢 -2.39 kB
assets/CloudSignupView-iGxYubM6.js (new) 9.7 kB 🔴 +9.7 kB 🔴 +2.71 kB 🔴 +2.39 kB
assets/CloudLayoutView-CODAUSRa.js (removed) 9.36 kB 🟢 -9.36 kB 🟢 -2.34 kB 🟢 -2.02 kB
assets/CloudLayoutView-CplU9De0.js (new) 9.36 kB 🔴 +9.36 kB 🔴 +2.34 kB 🔴 +2.03 kB
assets/UserCheckView-DduusAtM.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.93 kB
assets/UserCheckView-tQsEUn8c.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserSelectView-Ci_SIKkS.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.89 kB
assets/UserSelectView-ClLJ68JD.js (new) 6 kB 🔴 +6 kB 🔴 +2.15 kB 🔴 +1.89 kB
assets/CloudForgotPasswordView-0n6fDFHa.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.75 kB 🔴 +1.54 kB
assets/CloudForgotPasswordView-BPANiZvq.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.75 kB 🟢 -1.54 kB
assets/CloudAuthTimeoutView-4KqCYKHa.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.36 kB
assets/CloudAuthTimeoutView-DZqvw-z5.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/CloudSubscriptionRedirectView-BXgua0SI.js (removed) 4.3 kB 🟢 -4.3 kB 🟢 -1.57 kB 🟢 -1.38 kB
assets/CloudSubscriptionRedirectView-C6UZpzGN.js (new) 4.3 kB 🔴 +4.3 kB 🔴 +1.57 kB 🔴 +1.38 kB

Status: 9 added / 9 removed / 3 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-C_hlQYqB.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.96 kB 🔴 +8.81 kB
assets/KeybindingPanel-DTH9rJEL.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.96 kB 🟢 -8.82 kB
assets/SecretsPanel-CTcf3aqm.js (removed) 24.2 kB 🟢 -24.2 kB 🟢 -5.77 kB 🟢 -5.07 kB
assets/SecretsPanel-phCyv-JP.js (new) 24.2 kB 🔴 +24.2 kB 🔴 +5.77 kB 🔴 +5.07 kB
assets/LegacyCreditsPanel-CNxMHrAY.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.52 kB 🟢 -4.85 kB
assets/LegacyCreditsPanel-CrIgR6oF.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.52 kB 🔴 +4.85 kB
assets/SubscriptionPanel-CW9WAUa4.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.98 kB 🟢 -4.37 kB
assets/SubscriptionPanel-DNiTia6p.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.97 kB 🔴 +4.38 kB
assets/AboutPanel-BnonMrdX.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.23 kB 🔴 +2.89 kB
assets/AboutPanel-S8CZnm4V.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.22 kB 🟢 -2.9 kB
assets/ExtensionPanel-BiJXKzOO.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.5 kB 🟢 -2.2 kB
assets/ExtensionPanel-C0O-KS26.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.5 kB 🔴 +2.2 kB
assets/ServerConfigPanel-BqD3fZ0m.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.98 kB 🔴 +1.76 kB
assets/ServerConfigPanel-DiM_jPf7.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.98 kB 🟢 -1.76 kB
assets/UserPanel-_RfG_pFw.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/UserPanel-0cEpxdhr.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/refreshRemoteConfig-BLzfmTW8.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +696 B 🔴 +603 B
assets/refreshRemoteConfig-CiEowdFL.js (removed) 1.57 kB 🟢 -1.57 kB 🟢 -697 B 🟢 -596 B
assets/cloudRemoteConfig-B1dYseLD.js (removed) 990 B 🟢 -990 B 🟢 -538 B 🟢 -459 B
assets/cloudRemoteConfig-Yfa5QQXp.js (new) 990 B 🔴 +990 B 🔴 +542 B 🔴 +452 B

Status: 10 added / 10 removed / 14 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-CpyMMf9W.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.11 kB
assets/auth-rFBgQ2JM.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.1 kB
assets/usePostAuthRedirect-BQxPL_ZG.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.28 kB 🟢 -1.11 kB
assets/usePostAuthRedirect-QEDs2NcQ.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.28 kB 🔴 +1.11 kB
assets/SignUpForm-C-1PQBPC.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-VseHI9BZ.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-CRalJ0k7.js (new) 1.91 kB 🔴 +1.91 kB 🔴 +877 B 🔴 +767 B
assets/UpdatePasswordContent-DbUSTJ5g.js (removed) 1.91 kB 🟢 -1.91 kB 🟢 -877 B 🟢 -764 B
assets/authStore-BD_vwAXE.js (new) 130 B 🔴 +130 B 🔴 +112 B 🔴 +109 B
assets/authStore-DV211s_U.js (removed) 130 B 🟢 -130 B 🟢 -112 B 🟢 -114 B
assets/auth-Bu-xwBmw.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +81 B
assets/auth-D0qRVLtR.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -80 B

Status: 6 added / 6 removed / 3 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-D7QlSoAv.js (new) 86 kB 🔴 +86 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-DNfECwWk.js (removed) 86 kB 🟢 -86 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog-BdtsXifg.js (new) 23.4 kB 🔴 +23.4 kB 🔴 +5.54 kB 🔴 +4.92 kB
assets/useShareDialog-UCLnnB_c.js (removed) 23.4 kB 🟢 -23.4 kB 🟢 -5.54 kB 🟢 -4.92 kB
assets/ComfyHubPublishDialog-Cun7Jd_3.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +90 B
assets/ComfyHubPublishDialog-DxJuEs4a.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -91 B
assets/useSubscriptionDialog-BbvwMyzW.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +96 B
assets/useSubscriptionDialog-CAkCmNTN.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -87 B

Status: 4 added / 4 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-CFqlIOXo.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.83 kB 🟢 -3.42 kB
assets/ComfyQueueButton-s7gHSzRx.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.83 kB 🔴 +3.42 kB
assets/useTerminalTabs-_F3aS1qh.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.84 kB 🟢 -3.39 kB
assets/useTerminalTabs-Blr56yHw.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.84 kB 🔴 +3.39 kB
assets/SubscribeButton-CoGIr2pA.js (removed) 2.44 kB 🟢 -2.44 kB 🟢 -1.05 kB 🟢 -944 B
assets/SubscribeButton-DP6xqrAs.js (new) 2.44 kB 🔴 +2.44 kB 🔴 +1.05 kB 🔴 +925 B
assets/cloudFeedbackTopbarButton-CZsGO266.js (new) 829 B 🔴 +829 B 🔴 +497 B 🔴 +452 B
assets/cloudFeedbackTopbarButton-DeQ0vlTJ.js (removed) 829 B 🟢 -829 B 🟢 -496 B 🟢 -450 B
assets/ComfyQueueButton-DFfUskVa.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -93 B
assets/ComfyQueueButton-XBK5P7-d.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +89 B

Status: 5 added / 5 removed / 8 unchanged

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

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-CRYewrdW.js (removed) 125 kB 🟢 -125 kB 🟢 -27.6 kB 🟢 -23.4 kB
assets/load3dService-DcGwpsmQ.js (new) 125 kB 🔴 +125 kB 🔴 +27.6 kB 🔴 +23.4 kB
assets/api-0GgvxsrF.js (new) 84.3 kB 🔴 +84.3 kB 🔴 +22.7 kB 🔴 +19.6 kB
assets/api-BH4lb5fc.js (removed) 84.3 kB 🟢 -84.3 kB 🟢 -22.7 kB 🟢 -19.6 kB
assets/workflowShareService-BybBzIPw.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/workflowShareService-D4CQTPxx.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.91 kB 🔴 +4.36 kB
assets/keybindingService-DlP_UH35.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.68 kB 🔴 +3.23 kB
assets/keybindingService-DZ7CzZ62.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.68 kB 🟢 -3.23 kB
assets/releaseStore-DPFQSMtz.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/releaseStore-fK4Tp4wI.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/extensionStore-CnLLKZZX.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/extensionStore-DphWW8i-.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/userStore-BuvxVko2.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -828 B
assets/userStore-wXXtgKiX.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +929 B 🔴 +829 B
assets/audioService-BIPU51YW.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +865 B 🔴 +751 B
assets/audioService-CWow179Q.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -864 B 🟢 -749 B
assets/dialogService-BUnAr4cw.js (removed) 99 B 🟢 -99 B 🟢 -98 B 🟢 -89 B
assets/dialogService-C9QAFnZZ.js (new) 99 B 🔴 +99 B 🔴 +98 B 🔴 +89 B
assets/settingStore-DyFA3pe7.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +96 B
assets/settingStore-sr6O_pXB.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -88 B
assets/assetsStore-DkwXQxgL.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -88 B
assets/assetsStore-DU0gVED6.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +87 B
assets/releaseStore-CERM_MOW.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -82 B
assets/releaseStore-Cro7Tqa2.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +87 B

Status: 12 added / 12 removed / 3 unchanged

Utilities & Hooks — 3.3 MB (baseline 3.3 MB) • 🔴 +43 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-So2xrjvE.js (new) 2.94 MB 🔴 +2.94 MB 🔴 +681 kB 🔴 +513 kB
assets/promotionUtils-cmLNpuvu.js (removed) 2.94 MB 🟢 -2.94 MB 🟢 -681 kB 🟢 -513 kB
assets/useConflictDetection-DXmniFu-.js (new) 233 kB 🔴 +233 kB 🔴 +52 kB 🔴 +42.3 kB
assets/useConflictDetection-DYTAX2JR.js (removed) 233 kB 🟢 -233 kB 🟢 -52 kB 🟢 -42.3 kB
assets/useLoad3d-BBDcnyI5.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.75 kB 🟢 -5.11 kB
assets/useLoad3d-CBx_3BNz.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.75 kB 🔴 +5.09 kB
assets/useLoad3dViewer-D6WU98Zo.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.36 kB
assets/useLoad3dViewer-DC7qYQuu.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.35 kB
assets/useFeatureFlags-BzSgKr4j.js (removed) 6.36 kB 🟢 -6.36 kB 🟢 -2.01 kB 🟢 -1.7 kB
assets/useFeatureFlags-W2hfH4CU.js (new) 6.36 kB 🔴 +6.36 kB 🔴 +2.01 kB 🔴 +1.7 kB
assets/useSessionCookie-DUm7qmH6.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.15 kB 🔴 +979 B
assets/useSessionCookie-otzq1J0u.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.15 kB 🟢 -977 B
assets/subscriptionCheckoutUtil-BcQOgij4.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.19 kB
assets/subscriptionCheckoutUtil-F9QoLUs0.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/assetPreviewUtil-D_1BUY8N.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1 kB 🔴 +875 B
assets/assetPreviewUtil-YwuZrCg0.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1 kB 🟢 -878 B
assets/useUpstreamValue-COGr9Ix5.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +792 B 🔴 +701 B
assets/useUpstreamValue-Dw_P5yLv.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -791 B 🟢 -703 B
assets/useWorkspaceSwitch-BgiEZIbu.js (removed) 748 B 🟢 -748 B 🟢 -383 B 🟢 -333 B
assets/useWorkspaceSwitch-CpNtgmzS.js (new) 748 B 🔴 +748 B 🔴 +384 B 🔴 +336 B
assets/useLoad3d-DApLwpyH.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useLoad3d-DvAVfa6_.js (removed) 311 B 🟢 -311 B 🟢 -164 B 🟢 -149 B
assets/useSessionCookie-DmdSznoE.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -79 B
assets/useSessionCookie-X7seMjrX.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +82 B
assets/useLoad3dViewer-_QDLGvbg.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -93 B
assets/useLoad3dViewer-LSQlpSom.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +91 B
assets/useCurrentUser-BCNre4t0.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +93 B
assets/useCurrentUser-CGgxzbZj.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -84 B

Status: 14 added / 14 removed / 16 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/WidgetSelect-Cbuv4sLZ.js (new) 82.6 kB 🔴 +82.6 kB 🔴 +18.1 kB 🔴 +15.7 kB
assets/WidgetSelect-nYfkSLh3.js (removed) 82.6 kB 🟢 -82.6 kB 🟢 -18.1 kB 🟢 -15.6 kB
assets/core--4FxIMq5.js (removed) 77.9 kB 🟢 -77.9 kB 🟢 -20.3 kB 🟢 -17.2 kB
assets/core-DJYWUV-F.js (new) 77.9 kB 🔴 +77.9 kB 🔴 +20.3 kB 🔴 +17.2 kB
assets/groupNode-D88wY882.js (removed) 73.1 kB 🟢 -73.1 kB 🟢 -18.4 kB 🟢 -16.2 kB
assets/groupNode-M12KhQNa.js (new) 73.1 kB 🔴 +73.1 kB 🔴 +18.4 kB 🔴 +16.2 kB
assets/SubscriptionRequiredDialogContentWorkspace-BbOFKRgt.js (new) 47.8 kB 🔴 +47.8 kB 🔴 +9.08 kB 🔴 +7.85 kB
assets/SubscriptionRequiredDialogContentWorkspace-CZ5u3kLG.js (removed) 47.8 kB 🟢 -47.8 kB 🟢 -9.07 kB 🟢 -7.84 kB
assets/Load3DControls-8i2MC2Q9.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.57 kB 🔴 +6.61 kB
assets/Load3DControls-CaGBo_L5.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.57 kB 🟢 -6.62 kB
assets/WorkspacePanelContent-BarReKBG.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -6.96 kB 🟢 -6.17 kB
assets/WorkspacePanelContent-CbkV6gj4.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +6.96 kB 🔴 +6.16 kB
assets/WidgetPainter-C612gYcs.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.86 kB 🔴 +6.99 kB
assets/WidgetPainter-CGjtue8U.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -7 kB
assets/Load3dViewerContent-B_U1xJiQ.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.3 kB 🟢 -5.47 kB
assets/Load3dViewerContent-CFoIFKiL.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.46 kB
assets/SubscriptionRequiredDialogContent-CuEuKCdP.js (removed) 26.6 kB 🟢 -26.6 kB 🟢 -6.56 kB 🟢 -5.78 kB
assets/SubscriptionRequiredDialogContent-D6PlrTUO.js (new) 26.6 kB 🔴 +26.6 kB 🔴 +6.56 kB 🔴 +5.8 kB
assets/WidgetImageCrop-CL7_55pJ.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.75 kB 🔴 +5.04 kB
assets/WidgetImageCrop-hVDGcIuP.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.04 kB
assets/SubscriptionPanelContentWorkspace-DTAn2e10.js (new) 22.1 kB 🔴 +22.1 kB 🔴 +5.16 kB 🔴 +4.55 kB
assets/SubscriptionPanelContentWorkspace-lMjTETZL.js (removed) 22.1 kB 🟢 -22.1 kB 🟢 -5.16 kB 🟢 -4.55 kB
assets/load3d-B89hvrCY.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -5.18 kB 🟢 -4.49 kB
assets/load3d-VWyWp6Yp.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +5.18 kB 🔴 +4.49 kB
assets/CurrentUserPopoverWorkspace-BAPtvVQP.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.68 kB 🔴 +4.19 kB
assets/CurrentUserPopoverWorkspace-BbkvIJP0.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.68 kB 🟢 -4.19 kB
assets/SignInContent-Bcrsp1W5.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +5.01 kB 🔴 +4.37 kB
assets/SignInContent-MBWq5xd2.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -5.01 kB 🟢 -4.37 kB
assets/Load3D-D2X64KeT.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.52 kB 🟢 -3.93 kB
assets/Load3D-DmuNXINU.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.52 kB 🔴 +3.94 kB
assets/WidgetInputNumber-BB_H5YPY.js (new) 19 kB 🔴 +19 kB 🔴 +4.79 kB 🔴 +4.25 kB
assets/WidgetInputNumber-CCCfB9AS.js (removed) 19 kB 🟢 -19 kB 🟢 -4.79 kB 🟢 -4.25 kB
assets/WidgetRecordAudio-FLCEx5Hb.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRecordAudio-TinpAqTI.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.14 kB
assets/WidgetRange-D_6FXlnC.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.73 kB
assets/WidgetRange-DRDpnZZx.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.17 kB 🔴 +3.72 kB
assets/WaveAudioPlayer-DIRbEeXc.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.49 kB 🔴 +3.05 kB
assets/WaveAudioPlayer-QLuIugdt.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.49 kB 🟢 -3.06 kB
assets/WidgetCurve-CeFSGaMn.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.51 kB 🟢 -3.17 kB
assets/WidgetCurve-D_MxD9xg.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.51 kB 🔴 +3.18 kB
assets/TeamWorkspacesDialogContent-DkUDFo7M.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.01 kB 🟢 -2.67 kB
assets/TeamWorkspacesDialogContent-Lha4_j0P.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.01 kB 🔴 +2.67 kB
assets/Load3DConfiguration-B8AQZ-7q.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.66 kB 🟢 -2.35 kB
assets/Load3DConfiguration-Bf2dcTAL.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.66 kB 🔴 +2.35 kB
assets/nodeTemplates-CEiXLAPn.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -3.08 kB 🟢 -2.71 kB
assets/nodeTemplates-DQ0TA-BV.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +3.08 kB 🔴 +2.7 kB
assets/onboardingCloudRoutes-CjEYfrKi.js (new) 8.01 kB 🔴 +8.01 kB 🔴 +2.48 kB 🔴 +2.12 kB
assets/onboardingCloudRoutes-DQ_v5MKg.js (removed) 8.01 kB 🟢 -8.01 kB 🟢 -2.48 kB 🟢 -2.14 kB
assets/NightlySurveyController-COYaTxRe.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.4 kB
assets/NightlySurveyController-CSYbnOVN.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.39 kB
assets/InviteMemberDialogContent-Chb8KvOH.js (removed) 7.03 kB 🟢 -7.03 kB 🟢 -2.14 kB 🟢 -1.85 kB
assets/InviteMemberDialogContent-DJ3zw_SB.js (new) 7.03 kB 🔴 +7.03 kB 🔴 +2.14 kB 🔴 +1.85 kB
assets/WidgetWithControl-CivoE36A.js (removed) 6.19 kB 🟢 -6.19 kB 🟢 -2.48 kB 🟢 -2.19 kB
assets/WidgetWithControl-CVOLQFi3.js (new) 6.19 kB 🔴 +6.19 kB 🔴 +2.48 kB 🔴 +2.21 kB
assets/load3dPreviewExtensions-CvsnNkrF.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/load3dPreviewExtensions-JOWRGq8q.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-aoTQTiW8.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.59 kB
assets/CreateWorkspaceDialogContent-Cd_nJ5DR.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/missingModelDownload-D62XJPcC.js (new) 5.08 kB 🔴 +5.08 kB 🔴 +1.97 kB 🔴 +1.72 kB
assets/missingModelDownload-jNBToEYQ.js (removed) 5.08 kB 🟢 -5.08 kB 🟢 -1.97 kB 🟢 -1.72 kB
assets/FreeTierDialogContent-CbV8ljds.js (removed) 5.02 kB 🟢 -5.02 kB 🟢 -1.69 kB 🟢 -1.49 kB
assets/FreeTierDialogContent-M7X1L6kO.js (new) 5.02 kB 🔴 +5.02 kB 🔴 +1.69 kB 🔴 +1.49 kB
assets/EditWorkspaceDialogContent-CNXm-3dr.js (removed) 5 kB 🟢 -5 kB 🟢 -1.79 kB 🟢 -1.56 kB
assets/EditWorkspaceDialogContent-d0FWBDjx.js (new) 5 kB 🔴 +5 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/WidgetTextarea-CjbPpfGG.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.9 kB 🟢 -1.67 kB
assets/WidgetTextarea-DZ8lZbpc.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.9 kB 🔴 +1.66 kB
assets/saveMesh-Bg1BtCR3.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.54 kB 🔴 +1.37 kB
assets/saveMesh-BjhnbyFJ.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.54 kB 🟢 -1.36 kB
assets/Preview3d-BRGc06E5.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.24 kB
assets/Preview3d-DJWpzk7y.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.24 kB
assets/ValueControlPopover-BBT_Uwrc.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.58 kB 🟢 -1.41 kB
assets/ValueControlPopover-DTDEYDaZ.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.59 kB 🔴 +1.41 kB
assets/CancelSubscriptionDialogContent-DIUX3ojD.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.66 kB 🟢 -1.44 kB
assets/CancelSubscriptionDialogContent-Dz8oSpGC.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.65 kB 🔴 +1.44 kB
assets/tierBenefits-BXO06PBw.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.58 kB 🟢 -1.37 kB
assets/tierBenefits-CkembdfJ.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/DeleteWorkspaceDialogContent-BRW76hnr.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.27 kB
assets/DeleteWorkspaceDialogContent-D3_kZOPu.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.27 kB
assets/LeaveWorkspaceDialogContent-BNWZpHpj.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.42 kB 🔴 +1.22 kB
assets/LeaveWorkspaceDialogContent-CLaa4fVT.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.22 kB
assets/RemoveMemberDialogContent-CWDFWYtd.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.38 kB 🔴 +1.18 kB
assets/RemoveMemberDialogContent-e8jSc_VK.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.18 kB
assets/RevokeInviteDialogContent-Bet9181Z.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-UAZupboF.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.2 kB
assets/InviteMemberUpsellDialogContent-BatBHp6A.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.24 kB 🟢 -1.08 kB
assets/InviteMemberUpsellDialogContent-TcSxe-7_.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.23 kB 🔴 +1.07 kB
assets/Media3DTop-BpCKvTip.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/Media3DTop-DX8jap9b.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/GlobalToast-B3pqvbra.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/GlobalToast-IId0yNpQ.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/load3dAdvanced-Br_uenD8.js (new) 2.85 kB 🔴 +2.85 kB 🔴 +1.11 kB 🔴 +977 B
assets/load3dAdvanced-CK8ZE5mz.js (removed) 2.85 kB 🟢 -2.85 kB 🟢 -1.12 kB 🟢 -979 B
assets/SubscribeToRun-Cgijq5xM.js (new) 2.52 kB 🔴 +2.52 kB 🔴 +1.11 kB 🔴 +972 B
assets/SubscribeToRun-xKNaWkwT.js (removed) 2.52 kB 🟢 -2.52 kB 🟢 -1.11 kB 🟢 -975 B
assets/graphHasMissingNodes-CSspvYs_.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +906 B 🔴 +791 B
assets/graphHasMissingNodes-DMYuSciO.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -906 B 🟢 -791 B
assets/MediaAudioTop-BMr887ip.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +838 B 🔴 +692 B
assets/MediaAudioTop-C9PUAJyQ.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -839 B 🟢 -692 B
assets/CloudRunButtonWrapper-BCIe7Idi.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +549 B 🔴 +514 B
assets/CloudRunButtonWrapper-pfT_qIT0.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -548 B 🟢 -524 B
assets/cloudSessionCookie-DcqyWmi9.js (removed) 991 B 🟢 -991 B 🟢 -465 B 🟢 -398 B
assets/cloudSessionCookie-q-UWPGTh.js (new) 991 B 🔴 +991 B 🔴 +468 B 🔴 +418 B
assets/cloudBadges-DM_6bwNh.js (removed) 976 B 🟢 -976 B 🟢 -556 B 🟢 -502 B
assets/cloudBadges-M6AmLFKP.js (new) 976 B 🔴 +976 B 🔴 +560 B 🔴 +476 B
assets/cloudSubscription-Bid3rTEi.js (new) 820 B 🔴 +820 B 🔴 +451 B 🔴 +364 B
assets/cloudSubscription-BmgCf8gb.js (removed) 820 B 🟢 -820 B 🟢 -450 B 🟢 -363 B
assets/Load3DAdvanced-BiM2E2Gb.js (new) 813 B 🔴 +813 B 🔴 +455 B 🔴 +408 B
assets/Load3DAdvanced-BSCF8NFF.js (removed) 813 B 🟢 -813 B 🟢 -457 B 🟢 -410 B
assets/nightlyBadges-2pIIYmN0.js (new) 464 B 🔴 +464 B 🔴 +304 B 🔴 +255 B
assets/nightlyBadges-BX2WHn6x.js (removed) 464 B 🟢 -464 B 🟢 -304 B 🟢 -301 B
assets/missingModelDownload-B4TGjWvE.js (removed) 228 B 🟢 -228 B 🟢 -150 B 🟢 -129 B
assets/missingModelDownload-B7ZnVZrh.js (new) 228 B 🔴 +228 B 🔴 +152 B 🔴 +131 B
assets/SubscriptionPanelContentWorkspace-DSPUUkY-.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -101 B
assets/SubscriptionPanelContentWorkspace-DV6em7rx.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +93 B
assets/Load3dViewerContent-b27prMEN.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -110 B
assets/Load3dViewerContent-CVrXtZvY.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +91 B
assets/Load3DAdvanced-C0e1Xd_m.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -90 B
assets/Load3DAdvanced-YEfJEcE_.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +87 B
assets/WidgetLegacy-Ce4_jGkF.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +93 B
assets/WidgetLegacy-DywrolCg.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -95 B
assets/workflowDraftStoreV2-BiLDQemE.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -105 B
assets/workflowDraftStoreV2-DnbDPDxX.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +109 B
assets/Load3D-CdZFnMOd.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -91 B
assets/Load3D-Czag0RLw.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +80 B
assets/changeTracker-DG8kMVXK.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +81 B
assets/changeTracker-DNXkuxme.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -83 B

Status: 63 added / 63 removed / 86 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.8 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.7 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.7 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.1 MB heap
large-graph-pan: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.7 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.5 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.0 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.6 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 54.0 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.1 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 149ms TBT · 76.1 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.5 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 399ms TBT · 156.3 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 25ms TBT · 154.3 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.8 MB heap

⚠️ 1 regression detected

Show regressions
Metric Baseline PR (median) Δ Sig
large-graph-pan: style recalc duration 18ms 20ms +11% ⚠️ z=3.8
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=0.4
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 9ms -4% z=-2.1
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 11 +22% z=-0.3
canvas-idle: task duration 356ms 376ms +6% z=-0.6
canvas-idle: script duration 17ms 22ms +33% z=-1.3
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 54.1 MB 53.8 MB -0%
canvas-idle: DOM nodes 18 22 +22% z=-0.5
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 3ms 4ms +7% z=-0.4
canvas-mouse-sweep: style recalc duration 36ms 37ms +4% z=-1.6
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 74 73 -1% z=-2.4
canvas-mouse-sweep: task duration 750ms 763ms +2% z=-1.8
canvas-mouse-sweep: script duration 126ms 116ms -8% z=-3.0
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 58.1 MB 52.7 MB -9%
canvas-mouse-sweep: DOM nodes 57 -104 -282% z=-64.1
canvas-mouse-sweep: event listeners 4 -97 -2513% z=-25.2
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=-0.3
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms +24% z=1.2
canvas-zoom-sweep: style recalc duration 16ms 20ms +22% z=0.5
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +3% z=1.6
canvas-zoom-sweep: task duration 312ms 306ms -2% z=-0.9
canvas-zoom-sweep: script duration 20ms 24ms +19% z=-1.0
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 57.5 MB 59.1 MB +3%
canvas-zoom-sweep: DOM nodes 77 79 +2% z=-0.9
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms -0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 8ms +0% z=-3.0
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 12 +0% z=-2.2
dom-widget-clipping: task duration 356ms 330ms -7% z=-2.1
dom-widget-clipping: script duration 62ms 57ms -8% z=-3.4
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 63.0 MB 62.7 MB -0%
dom-widget-clipping: DOM nodes 20 20 +0% z=-1.5
dom-widget-clipping: event listeners 0 0 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 9ms 9ms -4% z=-3.2
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 11 +10% z=-1.9
large-graph-idle: task duration 555ms 503ms -9% z=-0.7
large-graph-idle: script duration 101ms 84ms -17% z=-1.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 59.3 MB 59.1 MB -0%
large-graph-idle: DOM nodes 20 22 +10% z=-3.0
large-graph-idle: event listeners 6 4 -33% z=-3.7
large-graph-pan: avg frame time 17ms 17ms +0% z=-0.2
large-graph-pan: p95 frame time 17ms 17ms -0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 18ms 20ms +11% ⚠️ z=3.8
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 70 +1% z=-0.1
large-graph-pan: task duration 1050ms 1026ms -2% z=-1.3
large-graph-pan: script duration 379ms 381ms +0% z=-1.4
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 79.3 MB 78.7 MB -1%
large-graph-pan: DOM nodes 18 -123 -783% z=-86.1
large-graph-pan: event listeners 6 -60 -1100% z=-78.4
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms -0%
large-graph-zoom: layout duration 8ms 8ms +6%
large-graph-zoom: style recalc duration 19ms 21ms +9%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 66 +2%
large-graph-zoom: task duration 1307ms 1260ms -4%
large-graph-zoom: script duration 490ms 487ms -1%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 64.9 MB 65.5 MB +1%
large-graph-zoom: DOM nodes 14 15 +7%
large-graph-zoom: event listeners 8 8 +0%
minimap-idle: avg frame time 17ms 17ms +0% z=0.7
minimap-idle: p95 frame time 17ms 17ms -0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 9ms 8ms -12% z=-1.9
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 10 +0% z=0.6
minimap-idle: task duration 498ms 485ms -3% z=-0.9
minimap-idle: script duration 97ms 77ms -21% z=-2.2
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 61.4 MB 61.0 MB -1%
minimap-idle: DOM nodes 20 20 +0% z=0.6
minimap-idle: event listeners 6 4 -33% z=-0.9
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.4
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 11ms -5% z=-2.1
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 47 -2% z=-1.6
subgraph-dom-widget-clipping: task duration 356ms 352ms -1% z=-1.4
subgraph-dom-widget-clipping: script duration 126ms 123ms -2% z=-0.9
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 63.5 MB 63.6 MB +0%
subgraph-dom-widget-clipping: DOM nodes 22 20 -9% z=-1.9
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 11ms 8ms -27% z=-3.4
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 11 10 -14% z=-2.1
subgraph-idle: task duration 400ms 343ms -14% z=-0.9
subgraph-idle: script duration 19ms 13ms -32% z=-2.8
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 54.1 MB 54.0 MB -0%
subgraph-idle: DOM nodes 22 19 -14% z=-1.9
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 4ms 4ms +9% z=-1.5
subgraph-mouse-sweep: style recalc duration 36ms 40ms +9% z=-0.8
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 77 +1% z=-1.9
subgraph-mouse-sweep: task duration 678ms 673ms -1% z=-1.3
subgraph-mouse-sweep: script duration 94ms 90ms -4% z=-1.6
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 45.8 MB 52.1 MB +14%
subgraph-mouse-sweep: DOM nodes 65 -94 -245% z=-72.0
subgraph-mouse-sweep: event listeners 4 -98 -2538% 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 12ms 12ms -3%
subgraph-transition-enter: style recalc duration 27ms 27ms -1%
subgraph-transition-enter: layout count 4 4 +0%
subgraph-transition-enter: style recalc count 16 15 -6%
subgraph-transition-enter: task duration 807ms 713ms -12%
subgraph-transition-enter: script duration 39ms 26ms -33%
subgraph-transition-enter: TBT 145ms 149ms +3%
subgraph-transition-enter: heap used 92.8 MB 76.1 MB -18%
subgraph-transition-enter: DOM nodes 13833 13833 +0%
subgraph-transition-enter: event listeners 2529 2527 -0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms -1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 59ms 61ms +5%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 251 251 +0%
viewport-pan-sweep: task duration 3869ms 3516ms -9%
viewport-pan-sweep: script duration 1278ms 1196ms -6%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 64.1 MB 65.5 MB +2%
viewport-pan-sweep: DOM nodes 20 22 +10%
viewport-pan-sweep: event listeners 20 20 +0%
vue-large-graph-idle: avg frame time 17ms 17ms +0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 2ms
vue-large-graph-idle: style recalc duration 0ms 1ms
vue-large-graph-idle: layout count 0 1
vue-large-graph-idle: style recalc count 0 1
vue-large-graph-idle: task duration 12863ms 13279ms +3%
vue-large-graph-idle: script duration 648ms 592ms -9%
vue-large-graph-idle: TBT 0ms 399ms
vue-large-graph-idle: heap used 161.5 MB 156.3 MB -3%
vue-large-graph-idle: DOM nodes -3308 -3307 -0%
vue-large-graph-idle: event listeners -16474 -16471 -0%
vue-large-graph-pan: avg frame time 17ms 18ms +2%
vue-large-graph-pan: p95 frame time 17ms 17ms -0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 18ms 20ms +7%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 66 78 +18%
vue-large-graph-pan: task duration 14514ms 15515ms +7%
vue-large-graph-pan: script duration 901ms 850ms -6%
vue-large-graph-pan: TBT 0ms 25ms
vue-large-graph-pan: heap used 164.0 MB 154.3 MB -6%
vue-large-graph-pan: DOM nodes -3304 -5821 +76%
vue-large-graph-pan: event listeners -16472 -16465 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms +1%
workflow-execution: layout duration 1ms 1ms +9% z=-1.1
workflow-execution: style recalc duration 26ms 25ms -2% z=0.5
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 18 19 +3% z=0.3
workflow-execution: task duration 145ms 119ms -18% z=-0.3
workflow-execution: script duration 20ms 21ms +4% z=-2.6
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 62.0 MB 67.8 MB +9%
workflow-execution: DOM nodes 157 165 +5% z=0.5
workflow-execution: event listeners 69 69 +0% z=3.9
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-06-18T11:04:11.125Z",
  "gitSha": "4466b11b9443770fada7eb7152014d51078638aa",
  "branch": "jaewon/fe-932-refresh-workspace-billing-status-after-completed-top-up",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2024.8240000000237,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 10.112000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 392.09,
      "heapDeltaBytes": -2055896,
      "heapUsedBytes": 56370648,
      "domNodes": 24,
      "jsHeapTotalBytes": 26214400,
      "scriptDurationMs": 23.288,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2020.3329999999937,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.862999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 359.873,
      "heapDeltaBytes": -1934432,
      "heapUsedBytes": 56503740,
      "domNodes": 20,
      "jsHeapTotalBytes": 24379392,
      "scriptDurationMs": 21.398,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1932.3050000000421,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 42.136,
      "layouts": 12,
      "layoutDurationMs": 3.665,
      "taskDurationMs": 820.3829999999998,
      "heapDeltaBytes": 5368768,
      "heapUsedBytes": 59722700,
      "domNodes": -260,
      "jsHeapTotalBytes": 14606336,
      "scriptDurationMs": 122.86800000000001,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1748.5100000000102,
      "styleRecalcs": 72,
      "styleRecalcDurationMs": 32.777,
      "layouts": 12,
      "layoutDurationMs": 3.4149999999999996,
      "taskDurationMs": 705.474,
      "heapDeltaBytes": -8003996,
      "heapUsedBytes": 50825336,
      "domNodes": 53,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 109.125,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1739.4590000000107,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 22.991999999999997,
      "layouts": 6,
      "layoutDurationMs": 0.7790000000000001,
      "taskDurationMs": 310.537,
      "heapDeltaBytes": 1731572,
      "heapUsedBytes": 53153988,
      "domNodes": 78,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 25.166999999999998,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1688.3870000000343,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 16.746000000000002,
      "layouts": 6,
      "layoutDurationMs": 0.6149999999999999,
      "taskDurationMs": 300.72900000000004,
      "heapDeltaBytes": 7243780,
      "heapUsedBytes": 70708720,
      "domNodes": 79,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 22.91,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 558.6100000000442,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 7.465,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 335.25899999999996,
      "heapDeltaBytes": 7255044,
      "heapUsedBytes": 65755248,
      "domNodes": 20,
      "jsHeapTotalBytes": 18874368,
      "scriptDurationMs": 59.416000000000004,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 566.0540000000083,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 7.606,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 325.612,
      "heapDeltaBytes": 6895684,
      "heapUsedBytes": 65707344,
      "domNodes": 20,
      "jsHeapTotalBytes": 18612224,
      "scriptDurationMs": 54.163,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666682,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2019.61799999998,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.872000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 504.89300000000003,
      "heapDeltaBytes": -8322844,
      "heapUsedBytes": 61951792,
      "domNodes": 22,
      "jsHeapTotalBytes": 11153408,
      "scriptDurationMs": 87.04400000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2001.1459999999488,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.850999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 500.1199999999999,
      "heapDeltaBytes": -8345064,
      "heapUsedBytes": 61989128,
      "domNodes": 22,
      "jsHeapTotalBytes": 11677696,
      "scriptDurationMs": 81.072,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2141.4530000000127,
      "styleRecalcs": 71,
      "styleRecalcDurationMs": 20.848,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1051.424,
      "heapDeltaBytes": 13491028,
      "heapUsedBytes": 84728672,
      "domNodes": 20,
      "jsHeapTotalBytes": 12115968,
      "scriptDurationMs": 411.33599999999996,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2115.4259999999567,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 19.75,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 999.942,
      "heapDeltaBytes": 18475596,
      "heapUsedBytes": 80222220,
      "domNodes": -266,
      "jsHeapTotalBytes": 5967872,
      "scriptDurationMs": 350.41999999999996,
      "eventListeners": -126,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3144.184999999993,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 20.898,
      "layouts": 60,
      "layoutDurationMs": 8.235,
      "taskDurationMs": 1246.524,
      "heapDeltaBytes": -5481908,
      "heapUsedBytes": 68313768,
      "domNodes": 16,
      "jsHeapTotalBytes": 10629120,
      "scriptDurationMs": 481.753,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3120.8629999999857,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 20.46,
      "layouts": 60,
      "layoutDurationMs": 8.254000000000001,
      "taskDurationMs": 1273.2559999999999,
      "heapDeltaBytes": 13906624,
      "heapUsedBytes": 69135352,
      "domNodes": 14,
      "jsHeapTotalBytes": 6553600,
      "scriptDurationMs": 491.85300000000007,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "minimap-idle",
      "durationMs": 2004.0789999999902,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.040000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 484.55499999999995,
      "heapDeltaBytes": -9652212,
      "heapUsedBytes": 63788844,
      "domNodes": 20,
      "jsHeapTotalBytes": 8531968,
      "scriptDurationMs": 75.02199999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2010.2640000000065,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.03,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 485.418,
      "heapDeltaBytes": -9604304,
      "heapUsedBytes": 64050940,
      "domNodes": 20,
      "jsHeapTotalBytes": 8007680,
      "scriptDurationMs": 78.231,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 540.1350000000207,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.842999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 337.14200000000005,
      "heapDeltaBytes": 7844940,
      "heapUsedBytes": 66738652,
      "domNodes": 20,
      "jsHeapTotalBytes": 18087936,
      "scriptDurationMs": 115.066,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 562.1939999999768,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.609,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.48400000000004,
      "heapDeltaBytes": 7773588,
      "heapUsedBytes": 66732920,
      "domNodes": 20,
      "jsHeapTotalBytes": 19398656,
      "scriptDurationMs": 129.939,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1998.7800000000107,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.301,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 339.20099999999996,
      "heapDeltaBytes": -2297172,
      "heapUsedBytes": 56597272,
      "domNodes": 18,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 12.926,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2000.9979999999814,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.132000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 346.365,
      "heapDeltaBytes": -2357948,
      "heapUsedBytes": 56586868,
      "domNodes": 20,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 12.589,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1739.103,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 42.66,
      "layouts": 16,
      "layoutDurationMs": 3.85,
      "taskDurationMs": 703.7150000000001,
      "heapDeltaBytes": -17559112,
      "heapUsedBytes": 51076220,
      "domNodes": -250,
      "jsHeapTotalBytes": 21422080,
      "scriptDurationMs": 93.10799999999999,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1671.2800000000243,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 36.72,
      "layouts": 16,
      "layoutDurationMs": 4.588,
      "taskDurationMs": 641.623,
      "heapDeltaBytes": -5160640,
      "heapUsedBytes": 58207408,
      "domNodes": 62,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 87.314,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 931.7300000000159,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 27.117,
      "layouts": 4,
      "layoutDurationMs": 12.056999999999999,
      "taskDurationMs": 713.2100000000002,
      "heapDeltaBytes": 4371908,
      "heapUsedBytes": 79798848,
      "domNodes": 13833,
      "jsHeapTotalBytes": 15728640,
      "scriptDurationMs": 26.124999999999996,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 149,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8151.648000000023,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 61.569,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3589.0930000000003,
      "heapDeltaBytes": -10264,
      "heapUsedBytes": 70226212,
      "domNodes": 20,
      "jsHeapTotalBytes": 19718144,
      "scriptDurationMs": 1246.682,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8115.64599999997,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 61.059999999999995,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3442.189,
      "heapDeltaBytes": -3353276,
      "heapUsedBytes": 67190544,
      "domNodes": 24,
      "jsHeapTotalBytes": 16572416,
      "scriptDurationMs": 1145.9709999999998,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13382.112000000006,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13350.903,
      "heapDeltaBytes": -51561896,
      "heapUsedBytes": 161396268,
      "domNodes": -3308,
      "jsHeapTotalBytes": 17534976,
      "scriptDurationMs": 567.798,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13231.12100000003,
      "styleRecalcs": 1,
      "styleRecalcDurationMs": 2.1700000000000053,
      "layouts": 1,
      "layoutDurationMs": 3.3210000000000046,
      "taskDurationMs": 13206.644999999999,
      "heapDeltaBytes": -26393016,
      "heapUsedBytes": 166325928,
      "domNodes": -3306,
      "jsHeapTotalBytes": 20156416,
      "scriptDurationMs": 615.5350000000001,
      "eventListeners": -16471,
      "totalBlockingTimeMs": 797,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15646.608000000015,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 19.558999999999994,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15624.917,
      "heapDeltaBytes": -31319756,
      "heapUsedBytes": 167147444,
      "domNodes": -3310,
      "jsHeapTotalBytes": 16486400,
      "scriptDurationMs": 866.603,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 39,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15427.29600000007,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 19.767000000000035,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15404.712000000001,
      "heapDeltaBytes": -53886632,
      "heapUsedBytes": 156466268,
      "domNodes": -8332,
      "jsHeapTotalBytes": 14745600,
      "scriptDurationMs": 832.6179999999999,
      "eventListeners": -16460,
      "totalBlockingTimeMs": 11,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 447.50599999997576,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 25.85,
      "layouts": 5,
      "layoutDurationMs": 1.471,
      "taskDurationMs": 121.501,
      "heapDeltaBytes": 5264280,
      "heapUsedBytes": 69607064,
      "domNodes": 172,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 20.961000000000002,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666682,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 453.9909999999736,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 24.868,
      "layouts": 5,
      "layoutDurationMs": 1.3020000000000003,
      "taskDurationMs": 116.634,
      "heapDeltaBytes": 5042112,
      "heapUsedBytes": 72509204,
      "domNodes": 157,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 21.630999999999997,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

@jtydhr88 jtydhr88 left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

LGTM

@jtydhr88 jtydhr88 assigned dante01yoon and unassigned jtydhr88 Jun 19, 2026
@dante01yoon

Copy link
Copy Markdown
Collaborator Author

@coderabbitai approve

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Comments resolved and changes approved.

@dante01yoon dante01yoon added this pull request to the merge queue Jun 19, 2026
@github-merge-queue github-merge-queue Bot removed this pull request from the merge queue due to failed status checks Jun 19, 2026
@dante01yoon dante01yoon added this pull request to the merge queue Jun 19, 2026
Merged via the queue into main with commit c296842 Jun 19, 2026
49 checks passed
@dante01yoon dante01yoon deleted the jaewon/fe-932-refresh-workspace-billing-status-after-completed-top-up branch June 19, 2026 06:55
@dante01yoon dante01yoon added cloud/1.46 Backport PRs for cloud 1.46 needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch labels Jun 19, 2026
@comfy-pr-bot

Copy link
Copy Markdown
Member

@dante01yoon Successfully backported to #13007

@github-actions github-actions Bot removed the needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch label Jun 19, 2026
christian-byrne pushed a commit that referenced this pull request Jun 19, 2026
…after completed top-up (FE-932) (#13007)

Backport of #12787 to `cloud/1.46`

Automatically created by backport workflow.

Co-authored-by: Dante <bunggl@naver.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cloud/1.46 Backport PRs for cloud 1.46 size:XS This PR changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants