Skip to content

feat(assets): show file extension in asset description line#12306

Draft
DrJKL wants to merge 4 commits into
mainfrom
glary/fe-565-asset-file-extension
Draft

feat(assets): show file extension in asset description line#12306
DrJKL wants to merge 4 commits into
mainfrom
glary/fe-565-asset-file-extension

Conversation

@DrJKL
Copy link
Copy Markdown
Contributor

@DrJKL DrJKL commented May 16, 2026

PR Created by the Glary-Bot Agent


Summary

Show the asset's file extension (uppercase, e.g. PNG, MP4, GLB) in the description line beneath the asset name in both the Media Assets grid and sidebar list views — the badge approach was previously removed because it blocked content, so this surfaces the same information in the existing description line.

Changes

  • What: Added getAssetExtensionLabel(asset) in assetMetadataUtils.ts and prepended its output to the description line in MediaAssetCard.vue (grid view) and AssetsSidebarListView.vue (list view). Extension resolution goes through getAssetDisplayFilename so the Cloud case (asset.name is a content hash, real filename on display_name) still works, and uses getPathDetails so path-like filename metadata resolves correctly.
  • Description line now reads PNG 512x512, MP4 10 MB, GLB 7 MB, JPG, TXT, etc.
  • Empty when no extension can be determined (graceful fallback).

Review Focus

  • Format and ordering: <EXT> <existing metadata> separated by single spaces — matches the static Figma frame referenced in the ticket (PNG 512×512). The x vs × glyph for dimensions is pre-existing and left untouched (out of scope for this ticket).
  • The display-name fallback path is important on Cloud where asset.name is a blake3:... hash; covered by a regression test.

Fixes FE-565 (https://linear.app/comfyorg/issue/FE-565)

Screenshots

Description-line variants rendered with the new logic (grid view):

Screenshots

Asset cards showing description line with extension prepended for image (PNG 512x512), video (MP4 10 MB), audio (MP3 5 MB), 3D (GLB 7 MB), image without dimensions (JPG), and text (TXT)

┆Issue is synchronized with this Notion page by Unito

Glary-Bot added 2 commits May 15, 2026 15:24
Add the asset's file extension (uppercase, e.g. PNG, MP4, GLB) to the
metadata line beneath the asset name in both the grid (MediaAssetCard)
and list (AssetsSidebarListView) views. The badge approach was previously
removed because it blocked content; this surfaces the same information
in the existing description line.

Fixes FE-565
- Use getAssetDisplayFilename so Cloud assets (asset.name = content hash,
  filename on display_name) still produce a sensible extension label.
- Use getPathDetails so path-like filename metadata resolves the basename
  before extracting the suffix.
- Add regression tests for the Cloud hash case and path-prefixed names.
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 16, 2026

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 2760e8ec-e95f-4769-8607-2fef0dfbf835

📥 Commits

Reviewing files that changed from the base of the PR and between b558b4a and 28175e0.

📒 Files selected for processing (2)
  • src/components/sidebar/tabs/AssetsSidebarListView.vue
  • src/platform/assets/components/MediaAssetCard.vue
🚧 Files skipped from review as they are similar to previous changes (2)
  • src/platform/assets/components/MediaAssetCard.vue
  • src/components/sidebar/tabs/AssetsSidebarListView.vue

📝 Walkthrough

Walkthrough

Adds getAssetExtensionLabel to extract and uppercase asset file extensions, and prepends that label to metadata in the sidebar list view and media asset card, composing extension plus timing/dimensions/size into a single space-separated string.

Changes

Asset Extension Label Display

Layer / File(s) Summary
New getAssetExtensionLabel utility
src/platform/assets/utils/assetMetadataUtils.ts
Exports getAssetExtensionLabel(asset) to extract and uppercase the asset file extension using getPathDetails and filename resolution, with fallback to empty string when unavailable.
Utility tests
src/platform/assets/utils/assetMetadataUtils.test.ts
Test suite covers extension extraction and uppercasing, fallback to user_metadata.filename and display_name, path-prefix stripping, and empty-string behavior when no extension exists.
UI component metadata enrichment
src/components/sidebar/tabs/AssetsSidebarListView.vue, src/platform/assets/components/MediaAssetCard.vue, src/components/sidebar/tabs/AssetsSidebarListView.test.ts
Both components import and integrate getAssetExtensionLabel to prepend extension labels to their asset metadata displays; tests assert the composed secondaryText output across extension-only, size, execution time, and duration cases.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Poem

🐰 I peek and find each suffix bright,
Uppercased letters gleam in light,
Prepended tokens, neat and true,
Dimensions, time, or size join too,
A tiny hop makes metadata right. 🌿

🚥 Pre-merge checks | ✅ 6 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 66.67% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (6 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main change: adding file extension display in asset description lines across grid and list views.
Description check ✅ Passed The description comprehensively covers all required template sections including Summary, Changes with detailed What/Why, Review Focus with design rationale, and includes a reference to the fixed issue (FE-565) and supporting 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 PR uses "feat" language (not "fix"), so the bug-fix condition is not triggered. This is a feature addition, not a bugfix. Check explicitly states not to insist on e2e tests for non-bug PRs.
Adr Compliance For Entity/Litegraph Changes ✅ Passed This check applies only to PRs modifying src/lib/litegraph/, src/ecs/, or graph entity files. None of the changed files are in these directories. The PR modifies only asset metadata display.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch glary/fe-565-asset-file-extension

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 05/16/2026, 03:17:28 AM UTC

Links

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

🎭 Playwright: ❌ 1606 passed, 1 failed

❌ Failed Tests

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

📦 Bundle: 5.36 MB gzip 🔴 +690 B

Details

Summary

  • Raw size: 24.7 MB baseline 24.7 MB — 🔴 +1.58 kB
  • Gzip: 5.36 MB baseline 5.36 MB — 🔴 +690 B
  • Brotli: 4.15 MB baseline 4.14 MB — 🔴 +609 B
  • Bundles: 268 current • 268 baseline • 120 added / 120 removed

Category Glance
Data & Services 🔴 +965 B (3.16 MB) · Utilities & Hooks 🔴 +617 B (366 kB) · Vendor & Third-Party ⚪ 0 B (9.94 MB) · Other ⚪ 0 B (9.16 MB) · Graph Workspace ⚪ 0 B (1.24 MB) · Panels & Settings ⚪ 0 B (527 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BXO7pZwd.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +8.76 kB 🔴 +7.54 kB
assets/index-CkgkNRXf.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -8.76 kB 🟢 -7.53 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-C3wGbSRl.js (removed) 1.24 MB 🟢 -1.24 MB 🟢 -264 kB 🟢 -199 kB
assets/GraphView-x3SO-l9l.js (new) 1.24 MB 🔴 +1.24 MB 🔴 +264 kB 🔴 +199 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-Bo9__MAY.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.56 kB
assets/CloudSurveyView-Oz4V1STI.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.58 kB
assets/CloudLoginView-Bi9I6YXz.js (removed) 12.5 kB 🟢 -12.5 kB 🟢 -3.55 kB 🟢 -3.12 kB
assets/CloudLoginView-M6kkxSv2.js (new) 12.5 kB 🔴 +12.5 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/CloudSignupView-hmDuj6O1.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.06 kB 🔴 +2.7 kB
assets/CloudSignupView-ZR5csnP4.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.05 kB 🟢 -2.7 kB
assets/UserCheckView-DQbAr4mn.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/UserCheckView-DysZj9uW.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/CloudLayoutView-Bnh1wzNM.js (new) 7.81 kB 🔴 +7.81 kB 🔴 +2.49 kB 🔴 +2.17 kB
assets/CloudLayoutView-QGe6cCAk.js (removed) 7.81 kB 🟢 -7.81 kB 🟢 -2.48 kB 🟢 -2.18 kB
assets/CloudForgotPasswordView-BaBs5wC8.js (new) 6.22 kB 🔴 +6.22 kB 🔴 +2.21 kB 🔴 +1.95 kB
assets/CloudForgotPasswordView-CBaei9xW.js (removed) 6.22 kB 🟢 -6.22 kB 🟢 -2.21 kB 🟢 -1.95 kB
assets/CloudAuthTimeoutView-CoQRAVz1.js (new) 5.58 kB 🔴 +5.58 kB 🔴 +2.05 kB 🔴 +1.8 kB
assets/CloudAuthTimeoutView-DywCyPRm.js (removed) 5.58 kB 🟢 -5.58 kB 🟢 -2.05 kB 🟢 -1.8 kB
assets/CloudSubscriptionRedirectView-BtWYkg5n.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -2.03 kB 🟢 -1.81 kB
assets/CloudSubscriptionRedirectView-D2N0gqBp.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +2.03 kB 🔴 +1.81 kB
assets/UserSelectView-CkNUY6A_.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/UserSelectView-DCwnH0Y6.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.75 kB 🔴 +1.55 kB

Status: 9 added / 9 removed / 2 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CG2KY29x.js (removed) 47.5 kB 🟢 -47.5 kB 🟢 -9.87 kB 🟢 -8.75 kB
assets/KeybindingPanel-CJW1i1-C.js (new) 47.5 kB 🔴 +47.5 kB 🔴 +9.87 kB 🔴 +8.75 kB
assets/SecretsPanel-1YqIEP4P.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.73 kB 🟢 -5.06 kB
assets/SecretsPanel-Pv3sOW70.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.73 kB 🔴 +5.04 kB
assets/LegacyCreditsPanel-BXhNMu23.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +5.95 kB 🔴 +5.25 kB
assets/LegacyCreditsPanel-CgYaWNiu.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -5.94 kB 🟢 -5.24 kB
assets/SubscriptionPanel-COrS3r9k.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.19 kB 🟢 -4.55 kB
assets/SubscriptionPanel-D6NDJTX9.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.19 kB 🔴 +4.56 kB
assets/AboutPanel-CFYuZ6jR.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.99 kB
assets/AboutPanel-rJJA9Wam.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +2.98 kB
assets/ExtensionPanel-8mm5jC5l.js (new) 10.1 kB 🔴 +10.1 kB 🔴 +2.95 kB 🔴 +2.62 kB
assets/ExtensionPanel-BHPNU4Wt.js (removed) 10.1 kB 🟢 -10.1 kB 🟢 -2.95 kB 🟢 -2.62 kB
assets/ServerConfigPanel-BJ7AKDTf.js (new) 7.13 kB 🔴 +7.13 kB 🔴 +2.4 kB 🔴 +2.13 kB
assets/ServerConfigPanel-D8k3wcWi.js (removed) 7.13 kB 🟢 -7.13 kB 🟢 -2.39 kB 🟢 -2.14 kB
assets/UserPanel-AaiOY5fn.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.27 kB 🟢 -2.01 kB
assets/UserPanel-DJKqmz8Z.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.28 kB 🔴 +2 kB
assets/cloudRemoteConfig-06Y1tGv4.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +1.02 kB 🔴 +881 B
assets/cloudRemoteConfig-DpXColxS.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -1.02 kB 🟢 -881 B
assets/refreshRemoteConfig-B-t3b7OM.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -650 B 🟢 -556 B
assets/refreshRemoteConfig-Cyxlfi13.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +650 B 🔴 +558 B

Status: 10 added / 10 removed / 14 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-CW_eeLIC.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.1 kB
assets/auth-D0BgFSJp.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.1 kB
assets/SignUpForm-BCKcKc_d.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/SignUpForm-BixR3kdR.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/UpdatePasswordContent-DUC_Lm7U.js (removed) 2.98 kB 🟢 -2.98 kB 🟢 -1.33 kB 🟢 -1.18 kB
assets/UpdatePasswordContent-srd6_Hzd.js (new) 2.98 kB 🔴 +2.98 kB 🔴 +1.33 kB 🔴 +1.18 kB
assets/authStore-DmmpFGKa.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -599 B 🟢 -531 B
assets/authStore-il2cKWjl.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +599 B 🔴 +533 B
assets/auth-BVFSvNLG.js (removed) 348 B 🟢 -348 B 🟢 -218 B 🟢 -209 B
assets/auth-UPdVeHLn.js (new) 348 B 🔴 +348 B 🔴 +218 B 🔴 +205 B

Status: 5 added / 5 removed / 2 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-CWslIVPF.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-DX4-YeSt.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog-BN5aqIcK.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.81 kB 🟢 -5.14 kB
assets/useShareDialog-DJusq-BL.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.82 kB 🔴 +5.16 kB
assets/ComfyHubPublishDialog-X8QCusQe.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +659 B 🔴 +584 B
assets/ComfyHubPublishDialog-XayroI31.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -659 B 🟢 -581 B
assets/useSubscriptionDialog-9c3D1tJI.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -592 B 🟢 -520 B
assets/useSubscriptionDialog-DWkkzH-4.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +591 B 🔴 +520 B

Status: 4 added / 4 removed

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-CWxy8cZ1.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/ComfyQueueButton-RE6rnkO8.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.38 kB
assets/useTerminalTabs-2xpKEmNM.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.76 kB 🟢 -3.32 kB
assets/useTerminalTabs-DFbNjdt2.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.77 kB 🔴 +3.31 kB
assets/SubscribeButton-BYCkRNHn.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +921 B
assets/SubscribeButton-CURjIwI0.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -918 B
assets/cloudFeedbackTopbarButton-BnvVZ6ph.js (new) 1.94 kB 🔴 +1.94 kB 🔴 +967 B 🔴 +860 B
assets/cloudFeedbackTopbarButton-CEvmaAKN.js (removed) 1.94 kB 🟢 -1.94 kB 🟢 -965 B 🟢 -862 B
assets/ComfyQueueButton-Bmfg6WQK.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +626 B 🔴 +583 B
assets/ComfyQueueButton-bxBlBhbk.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -627 B 🟢 -573 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 3.16 MB (baseline 3.16 MB) • 🔴 +965 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-kh22HDDY.js (new) 2.09 MB 🔴 +2.09 MB 🔴 +477 kB 🔴 +361 kB
assets/dialogService-D-qgCbge.js (removed) 2.09 MB 🟢 -2.09 MB 🟢 -476 kB 🟢 -361 kB
assets/api-CFKBD8MW.js (new) 898 kB 🔴 +898 kB 🔴 +215 kB 🔴 +169 kB
assets/api-DE6z86IF.js (removed) 898 kB 🟢 -898 kB 🟢 -215 kB 🟢 -169 kB
assets/load3dService-Do-bK5lA.js (removed) 116 kB 🟢 -116 kB 🟢 -25.4 kB 🟢 -21.6 kB
assets/load3dService-Z4zEe2aX.js (new) 116 kB 🔴 +116 kB 🔴 +25.4 kB 🔴 +21.6 kB
assets/workflowShareService-BWXDZrYi.js (new) 16.7 kB 🔴 +16.7 kB 🔴 +4.93 kB 🔴 +4.36 kB
assets/workflowShareService-f86kyTZP.js (removed) 16.7 kB 🟢 -16.7 kB 🟢 -4.92 kB 🟢 -4.37 kB
assets/keybindingService-D5X9gifr.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.21 kB
assets/keybindingService-DvnXqk0F.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/releaseStore-C09Zn6V1.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/releaseStore-DymnhWRq.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/userStore-D9S0FuoV.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -934 B 🟢 -816 B
assets/userStore-Dh17OPIw.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +935 B 🔴 +817 B
assets/audioService-Cx4kBWsh.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -881 B 🟢 -758 B
assets/audioService-Dm8qdEOX.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +881 B 🔴 +765 B
assets/releaseStore-BPKLkq3E.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -595 B 🟢 -528 B
assets/releaseStore-C1i5gzDZ.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +595 B 🔴 +528 B
assets/workflowDraftStore-C4xmOCPe.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -591 B 🟢 -522 B
assets/workflowDraftStore-DuhkO2oa.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +590 B 🔴 +524 B
assets/dialogService-BRMDScWe.js (removed) 1.24 kB 🟢 -1.24 kB 🟢 -583 B 🟢 -521 B
assets/dialogService-CiyI0q6o.js (new) 1.24 kB 🔴 +1.24 kB 🔴 +583 B 🔴 +521 B
assets/settingStore-CYcv7Quz.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -586 B 🟢 -519 B
assets/settingStore-D_3OWsOi.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +586 B 🔴 +522 B
assets/assetsStore-D_h3DOdB.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -586 B 🟢 -516 B
assets/assetsStore-rf1Hn9kO.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +586 B 🔴 +518 B

Status: 13 added / 13 removed / 4 unchanged

Utilities & Hooks — 366 kB (baseline 366 kB) • 🔴 +617 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BUYhtKVz.js (removed) 234 kB 🟢 -234 kB 🟢 -52.1 kB 🟢 -42.5 kB
assets/useConflictDetection-CE7Gw672.js (new) 234 kB 🔴 +234 kB 🔴 +52.1 kB 🔴 +42.4 kB
assets/useLoad3d-CLMb1xI3.js (removed) 22.7 kB 🟢 -22.7 kB 🟢 -5.22 kB 🟢 -4.61 kB
assets/useLoad3d-f-Z0VuTN.js (new) 22.7 kB 🔴 +22.7 kB 🔴 +5.22 kB 🔴 +4.61 kB
assets/useLoad3dViewer-B37ZK13e.js (removed) 21 kB 🟢 -21 kB 🟢 -4.93 kB 🟢 -4.3 kB
assets/useLoad3dViewer-WVjSCu6U.js (new) 21 kB 🔴 +21 kB 🔴 +4.93 kB 🔴 +4.32 kB
assets/assetMetadataUtils-DVjYq_fE.js (new) 6.82 kB 🔴 +6.82 kB 🔴 +2.13 kB 🔴 +1.84 kB
assets/assetMetadataUtils-BrfVviz8.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -1.9 kB 🟢 -1.65 kB
assets/useFeatureFlags-CLW3YxqG.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.8 kB 🔴 +1.52 kB
assets/useFeatureFlags-DRimVAyX.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.79 kB 🟢 -1.52 kB
assets/useCopyToClipboard-3A6IqCoM.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/useCopyToClipboard-CbdJc60_.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/useWorkspaceUI-CAsOnU6G.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +982 B 🔴 +814 B
assets/useWorkspaceUI-DxQILF7P.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -982 B 🟢 -815 B
assets/subscriptionCheckoutUtil-4JMhFJOt.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/subscriptionCheckoutUtil-CFlTSc61.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.18 kB
assets/assetPreviewUtil-A0dcgCfS.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.01 kB 🔴 +884 B
assets/assetPreviewUtil-ItOejEht.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1.01 kB 🟢 -878 B
assets/useUpstreamValue-C1nOQRc_.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -803 B 🟢 -714 B
assets/useUpstreamValue-DbGAIAiU.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +805 B 🔴 +717 B
assets/useLoad3d-gY5fWECN.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +654 B 🔴 +585 B
assets/useLoad3d-mzDkAMC4.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -652 B 🟢 -583 B
assets/useLoad3dViewer-BKsqMKsm.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +620 B 🔴 +578 B
assets/useLoad3dViewer-D9F1JGKp.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -620 B 🟢 -569 B
assets/useCurrentUser-BSPCuQ4v.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +587 B 🔴 +520 B
assets/useCurrentUser-KCgYM_4q.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -587 B 🟢 -520 B
assets/useWorkspaceSwitch-BVyzx8wQ.js (new) 747 B 🔴 +747 B 🔴 +385 B 🔴 +331 B
assets/useWorkspaceSwitch-K7frXquj.js (removed) 747 B 🟢 -747 B 🟢 -382 B 🟢 -330 B

Status: 14 added / 14 removed / 17 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-BczHY4dn.js (removed) 78 kB 🟢 -78 kB 🟢 -20.2 kB 🟢 -17.2 kB
assets/core-CLGKTH_X.js (new) 78 kB 🔴 +78 kB 🔴 +20.2 kB 🔴 +17.2 kB
assets/groupNode-CLtsfd4a.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/groupNode-E-dVf8Oq.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/WidgetSelect-C2xEv6_d.js (removed) 68.4 kB 🟢 -68.4 kB 🟢 -15.1 kB 🟢 -13 kB
assets/WidgetSelect-D4ZqHJJS.js (new) 68.4 kB 🔴 +68.4 kB 🔴 +15.1 kB 🔴 +13 kB
assets/SubscriptionRequiredDialogContentWorkspace-CHw_r5sS.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.56 kB 🔴 +8.26 kB
assets/SubscriptionRequiredDialogContentWorkspace-D3NX1li6.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.55 kB 🟢 -8.27 kB
assets/Load3DControls-BODIA-pl.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.5 kB 🟢 -6.54 kB
assets/Load3DControls-DePYM8cg.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.5 kB 🔴 +6.55 kB
assets/WorkspacePanelContent-BFYRkgxf.js (new) 34.3 kB 🔴 +34.3 kB 🔴 +7.44 kB 🔴 +6.59 kB
assets/WorkspacePanelContent-BlHJxuGp.js (removed) 34.3 kB 🟢 -34.3 kB 🟢 -7.44 kB 🟢 -6.58 kB
assets/WidgetPainter-BaIb5vex.js (new) 33.5 kB 🔴 +33.5 kB 🔴 +8.28 kB 🔴 +7.36 kB
assets/WidgetPainter-DrFDIyYp.js (removed) 33.5 kB 🟢 -33.5 kB 🟢 -8.29 kB 🟢 -7.33 kB
assets/Load3dViewerContent-23BI8CU_.js (new) 30.6 kB 🔴 +30.6 kB 🔴 +6.19 kB 🔴 +5.37 kB
assets/Load3dViewerContent-BQWU9CqR.js (removed) 30.6 kB 🟢 -30.6 kB 🟢 -6.2 kB 🟢 -5.37 kB
assets/SubscriptionRequiredDialogContent-D8ZnEtEc.js (removed) 27.6 kB 🟢 -27.6 kB 🟢 -7.02 kB 🟢 -6.2 kB
assets/SubscriptionRequiredDialogContent-DBvRQyO1.js (new) 27.6 kB 🔴 +27.6 kB 🔴 +7.02 kB 🔴 +6.21 kB
assets/WidgetImageCrop--zGMlmFd.js (removed) 24.4 kB 🟢 -24.4 kB 🟢 -6.23 kB 🟢 -5.48 kB
assets/WidgetImageCrop-2Ibsy5af.js (new) 24.4 kB 🔴 +24.4 kB 🔴 +6.23 kB 🔴 +5.49 kB
assets/SubscriptionPanelContentWorkspace-CgXHS2xs.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.17 kB 🟢 -4.56 kB
assets/SubscriptionPanelContentWorkspace-ChDiBcnX.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.17 kB 🔴 +4.55 kB
assets/SignInContent-baIQAEK-.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.47 kB 🔴 +4.79 kB
assets/SignInContent-BFpcCMwb.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.47 kB 🟢 -4.8 kB
assets/CurrentUserPopoverWorkspace-Coq6STal.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +4.99 kB 🔴 +4.46 kB
assets/CurrentUserPopoverWorkspace-CVnFpAhu.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -4.99 kB 🟢 -4.47 kB
assets/WidgetInputNumber-BJFff-GY.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.3 kB
assets/WidgetInputNumber-CxilOKtj.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.29 kB
assets/Load3D-CGv_f17o.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.83 kB
assets/Load3D-DZoTZ22M.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/WidgetRecordAudio-BSyU8Dcd.js (new) 17.6 kB 🔴 +17.6 kB 🔴 +5.07 kB 🔴 +4.52 kB
assets/WidgetRecordAudio-BWbc7zjH.js (removed) 17.6 kB 🟢 -17.6 kB 🟢 -5.07 kB 🟢 -4.53 kB
assets/WidgetRange-B-0TVgbf.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.64 kB 🔴 +4.13 kB
assets/WidgetRange-qfukD9ME.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.64 kB 🟢 -4.14 kB
assets/load3d-Cx7_WNpn.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.62 kB 🟢 -4.01 kB
assets/load3d-Dawwt-m0.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.62 kB 🔴 +4.01 kB
assets/WaveAudioPlayer-BAzrFeRE.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.68 kB 🔴 +3.22 kB
assets/WaveAudioPlayer-D8IAqTRX.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.68 kB 🟢 -3.23 kB
assets/WidgetCurve-Cn6iTXOx.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -3.96 kB 🟢 -3.59 kB
assets/WidgetCurve-DRqKlU27.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +3.97 kB 🔴 +3.58 kB
assets/TeamWorkspacesDialogContent-Cmz4ukuD.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.46 kB 🔴 +3.08 kB
assets/TeamWorkspacesDialogContent-Dd1IhQUk.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.45 kB 🟢 -3.07 kB
assets/nodeTemplates-4WmnnZj3.js (removed) 9.92 kB 🟢 -9.92 kB 🟢 -3.52 kB 🟢 -3.11 kB
assets/nodeTemplates-DB1p7gyK.js (new) 9.92 kB 🔴 +9.92 kB 🔴 +3.52 kB 🔴 +3.11 kB
assets/NightlySurveyController-B4AsMEkX.js (removed) 9.05 kB 🟢 -9.05 kB 🟢 -3.18 kB 🟢 -2.81 kB
assets/NightlySurveyController-D126JCPE.js (new) 9.05 kB 🔴 +9.05 kB 🔴 +3.18 kB 🔴 +2.81 kB
assets/Load3DConfiguration-DFjz4Y4U.js (removed) 8.77 kB 🟢 -8.77 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-oju0bpBc.js (new) 8.77 kB 🔴 +8.77 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/InviteMemberDialogContent-CM5F6vDg.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.56 kB 🟢 -2.24 kB
assets/InviteMemberDialogContent-D6xgeUOT.js (new) 8.02 kB 🔴 +8.02 kB 🔴 +2.56 kB 🔴 +2.25 kB
assets/onboardingCloudRoutes-BOgUArdi.js (new) 6.94 kB 🔴 +6.94 kB 🔴 +2.18 kB 🔴 +1.86 kB
assets/onboardingCloudRoutes-CW2voh_4.js (removed) 6.94 kB 🟢 -6.94 kB 🟢 -2.17 kB 🟢 -1.86 kB
assets/CreateWorkspaceDialogContent-DpyliyX6.js (removed) 6.23 kB 🟢 -6.23 kB 🟢 -2.27 kB 🟢 -1.98 kB
assets/CreateWorkspaceDialogContent-YzfxczHv.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +2.27 kB 🔴 +1.99 kB
assets/WidgetWithControl-CD2LjJw1.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +2.5 kB 🔴 +2.21 kB
assets/WidgetWithControl-IqVtrX2_.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -2.5 kB 🟢 -2.19 kB
assets/FreeTierDialogContent-B8NYEfpp.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +2.17 kB 🔴 +1.92 kB
assets/FreeTierDialogContent-D7FX5z40.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -2.17 kB 🟢 -1.93 kB
assets/EditWorkspaceDialogContent-B95ETW6E.js (new) 6.03 kB 🔴 +6.03 kB 🔴 +2.23 kB 🔴 +1.96 kB
assets/EditWorkspaceDialogContent-Cf0JODsu.js (removed) 6.03 kB 🟢 -6.03 kB 🟢 -2.23 kB 🟢 -1.95 kB
assets/WidgetTextarea-BHYAfFIc.js (removed) 5.84 kB 🟢 -5.84 kB 🟢 -2.3 kB 🟢 -2.03 kB
assets/WidgetTextarea-DCR2om_G.js (new) 5.84 kB 🔴 +5.84 kB 🔴 +2.3 kB 🔴 +2.04 kB
assets/Preview3d-BZ9mOmtp.js (removed) 5.81 kB 🟢 -5.81 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/Preview3d-D2lqOUXi.js (new) 5.81 kB 🔴 +5.81 kB 🔴 +1.96 kB 🔴 +1.7 kB
assets/ValueControlPopover-CXwgYKg9.js (removed) 5.61 kB 🟢 -5.61 kB 🟢 -2.05 kB 🟢 -1.85 kB
assets/ValueControlPopover-DHcaFDCy.js (new) 5.61 kB 🔴 +5.61 kB 🔴 +2.05 kB 🔴 +1.85 kB
assets/CancelSubscriptionDialogContent-BbQb0PVU.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.07 kB 🔴 +1.82 kB
assets/CancelSubscriptionDialogContent-CX6cjsTD.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.08 kB 🟢 -1.82 kB
assets/DeleteWorkspaceDialogContent-CATBjziJ.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.91 kB 🟢 -1.66 kB
assets/DeleteWorkspaceDialogContent-CkFFU9Ye.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.91 kB 🔴 +1.66 kB
assets/saveMesh-DqY7ZQ48.js (removed) 4.78 kB 🟢 -4.78 kB 🟢 -1.9 kB 🟢 -1.69 kB
assets/saveMesh-YU6NQwPu.js (new) 4.78 kB 🔴 +4.78 kB 🔴 +1.9 kB 🔴 +1.7 kB
assets/LeaveWorkspaceDialogContent-B_uDOxIf.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.85 kB 🔴 +1.61 kB
assets/LeaveWorkspaceDialogContent-DpLlk3MX.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.86 kB 🟢 -1.61 kB
assets/RemoveMemberDialogContent-8v9Lm6hn.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.81 kB 🟢 -1.58 kB
assets/RemoveMemberDialogContent-CLZbXHoV.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.81 kB 🔴 +1.59 kB
assets/RevokeInviteDialogContent-BMBBbka5.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.82 kB 🔴 +1.59 kB
assets/RevokeInviteDialogContent-dXoteZtX.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/InviteMemberUpsellDialogContent-AdxKwPbs.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.68 kB 🟢 -1.48 kB
assets/InviteMemberUpsellDialogContent-eIFsOjqV.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.68 kB 🔴 +1.48 kB
assets/tierBenefits-0b5jCAbX.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.36 kB
assets/tierBenefits-DfZ4C_PY.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/Media3DTop-CT0chRzb.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.81 kB 🟢 -1.61 kB
assets/Media3DTop-DdiA0NfG.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/cloudSessionCookie-CvDnv07M.js (removed) 4.39 kB 🟢 -4.39 kB 🟢 -1.61 kB 🟢 -1.4 kB
assets/cloudSessionCookie-Dw7kmGCz.js (new) 4.39 kB 🔴 +4.39 kB 🔴 +1.61 kB 🔴 +1.41 kB
assets/GlobalToast-CRZ0xqo-.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/GlobalToast-DQdAD4cw.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.12 kB
assets/CloudRunButtonWrapper-Cpzl1X15.js (new) 2.31 kB 🔴 +2.31 kB 🔴 +1.05 kB 🔴 +944 B
assets/CloudRunButtonWrapper-DMPNp0hJ.js (removed) 2.31 kB 🟢 -2.31 kB 🟢 -1.05 kB 🟢 -944 B
assets/SubscribeToRun-DEr2Jt6M.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +983 B 🔴 +874 B
assets/SubscribeToRun-Du3NDlxz.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -982 B 🟢 -874 B
assets/MediaImageTop-C9lzr2VH.js (removed) 2.12 kB 🟢 -2.12 kB 🟢 -1.03 kB 🟢 -908 B
assets/MediaImageTop-DFUZtEK6.js (new) 2.12 kB 🔴 +2.12 kB 🔴 +1.03 kB 🔴 +889 B
assets/MediaAudioTop-CQ5rfsmI.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1 kB 🔴 +858 B
assets/MediaAudioTop-YRN6sxWo.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1.01 kB 🟢 -862 B
assets/cloudBadges-Bi-DSXD6.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -1.01 kB 🟢 -876 B
assets/cloudBadges-BPceRFPj.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +1.01 kB 🔴 +882 B
assets/cloudSubscription-8YoBSykU.js (removed) 1.96 kB 🟢 -1.96 kB 🟢 -929 B 🟢 -811 B
assets/cloudSubscription-BfgTA55H.js (new) 1.96 kB 🔴 +1.96 kB 🔴 +931 B 🔴 +809 B
assets/graphHasMissingNodes-DIfH8PON.js (removed) 1.84 kB 🟢 -1.84 kB 🟢 -861 B 🟢 -764 B
assets/graphHasMissingNodes-V6Lnmq7K.js (new) 1.84 kB 🔴 +1.84 kB 🔴 +863 B 🔴 +758 B
assets/Load3D-b2uLKk6M.js (removed) 1.66 kB 🟢 -1.66 kB 🟢 -739 B 🟢 -660 B
assets/Load3D-P8zVAv5r.js (new) 1.66 kB 🔴 +1.66 kB 🔴 +742 B 🔴 +659 B
assets/nightlyBadges-2QolLUea.js (removed) 1.57 kB 🟢 -1.57 kB 🟢 -779 B 🟢 -692 B
assets/nightlyBadges-KUvfzIxU.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +779 B 🔴 +691 B
assets/Load3dViewerContent-44G7foxd.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +695 B 🔴 +619 B
assets/Load3dViewerContent-DHGnsm-2.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -695 B 🟢 -620 B
assets/previousFullPath-B3alJmB1.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -693 B 🟢 -601 B
assets/previousFullPath-DU6C8B5b.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +698 B 🔴 +601 B
assets/SubscriptionPanelContentWorkspace-C4ldDQPC.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +649 B 🔴 +579 B
assets/SubscriptionPanelContentWorkspace-IEFmfMB0.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -651 B 🟢 -581 B
assets/WidgetLegacy-C1v7mtKa.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -597 B 🟢 -532 B
assets/WidgetLegacy-CxKU8pd4.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +598 B 🔴 +531 B
assets/changeTracker-B_PlXY1y.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +586 B 🔴 +518 B
assets/changeTracker-C0w8oupP.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -587 B 🟢 -519 B

Status: 58 added / 58 removed / 85 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.4 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.1 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.0 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.3 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 83.6 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 94.0 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 105.3 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 80.0 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.3 MB heap
subgraph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.2 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.3 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 167ms TBT · 139.0 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 97.2 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 163.8 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 12ms TBT · 223.4 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.4 MB heap

⚠️ 4 regressions detected

Metric Baseline PR (median) Δ Sig
canvas-zoom-sweep: task duration 278ms 391ms +41% ⚠️ z=2.8
large-graph-pan: task duration 1036ms 1198ms +16% ⚠️ z=2.7
minimap-idle: task duration 513ms 671ms +31% ⚠️ z=3.0
subgraph-idle: task duration 335ms 478ms +43% ⚠️ z=3.5
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 9ms +0% z=-1.5
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 9 -15% z=-4.7
canvas-idle: task duration 428ms 448ms +5% z=1.7
canvas-idle: script duration 21ms 23ms +11% z=-0.9
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.2 MB 67.4 MB +2%
canvas-idle: DOM nodes -259 -123 -53% z=-114.1
canvas-idle: event listeners -129 -64 -51% z=-15.9
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-1.5
canvas-mouse-sweep: p95 frame time 17ms 17ms -1%
canvas-mouse-sweep: layout duration 3ms 4ms +17% z=1.7
canvas-mouse-sweep: style recalc duration 39ms 43ms +11% z=0.0
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 82 75 -9% z=-1.8
canvas-mouse-sweep: task duration 956ms 908ms -5% z=0.7
canvas-mouse-sweep: script duration 120ms 137ms +14% z=0.3
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 66.0 MB 52.1 MB -21%
canvas-mouse-sweep: DOM nodes -262 -108 -59% z=-65.8
canvas-mouse-sweep: event listeners -129 -132 +2% z=-33.7
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 +22% z=1.8
canvas-zoom-sweep: style recalc duration 15ms 20ms +30% z=0.4
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 33 +2% z=2.7
canvas-zoom-sweep: task duration 278ms 391ms +41% ⚠️ z=2.8
canvas-zoom-sweep: script duration 22ms 29ms +31% z=0.7
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 47.8 MB 67.0 MB +40%
canvas-zoom-sweep: DOM nodes 79 -65 -182% z=-182.2
canvas-zoom-sweep: event listeners 21 -50 -336% z=-14.1
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.5
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 -8% z=-2.9
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 11 -13% z=-5.2
dom-widget-clipping: task duration 321ms 359ms +12% z=-0.4
dom-widget-clipping: script duration 63ms 62ms -2% z=-1.9
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 54.8 MB 60.3 MB +10%
dom-widget-clipping: DOM nodes 20 17 -15% z=-3.6
dom-widget-clipping: event listeners 2 0 -100% 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 8ms 10ms +20% z=-2.3
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 511ms 649ms +27% z=2.0
large-graph-idle: script duration 85ms 115ms +35% z=1.2
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 58.0 MB 83.6 MB +44%
large-graph-idle: DOM nodes -261 -123 -53% z=-162.8
large-graph-idle: event listeners -129 -62 -52% z=-14.4
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 17ms 18ms +5% z=1.1
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-0.9
large-graph-pan: task duration 1036ms 1198ms +16% ⚠️ z=2.7
large-graph-pan: script duration 388ms 430ms +11% z=1.1
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.8 MB 94.0 MB +50%
large-graph-pan: DOM nodes -261 -246 -6% z=-160.3
large-graph-pan: event listeners -129 -140 +9% z=-175.0
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +1%
large-graph-zoom: layout duration 7ms 8ms +10%
large-graph-zoom: style recalc duration 17ms 19ms +12%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 66 -1%
large-graph-zoom: task duration 1305ms 1497ms +15%
large-graph-zoom: script duration 474ms 521ms +10%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 102.1 MB 105.3 MB +3%
large-graph-zoom: DOM nodes -265 -267 +1%
large-graph-zoom: event listeners -125 -126 +1%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 10ms +33% z=0.2
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 9 +6% z=-1.6
minimap-idle: task duration 513ms 671ms +31% ⚠️ z=3.0
minimap-idle: script duration 86ms 113ms +32% z=1.5
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 96.4 MB 80.0 MB -17%
minimap-idle: DOM nodes -258 -255 -1% z=-200.1
minimap-idle: event listeners -129 -129 +0% z=-202.3
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 12ms +11% z=-1.0
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 +0% z=-1.6
subgraph-dom-widget-clipping: task duration 346ms 375ms +8% z=-0.2
subgraph-dom-widget-clipping: script duration 121ms 122ms +1% z=-0.9
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 56.1 MB 58.3 MB +4%
subgraph-dom-widget-clipping: DOM nodes 20 20 +0% z=-1.9
subgraph-dom-widget-clipping: event listeners 8 6 -25% z=-1.7
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 9ms +11% z=-2.3
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 9 -6% z=-3.7
subgraph-idle: task duration 335ms 478ms +43% ⚠️ z=3.5
subgraph-idle: script duration 12ms 21ms +74% z=0.3
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 68.1 MB 66.2 MB -3%
subgraph-idle: DOM nodes 18 -263 -1561% z=-190.5
subgraph-idle: event listeners 6 -131 -2283% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 5ms +8% z=-0.1
subgraph-mouse-sweep: style recalc duration 34ms 41ms +20% z=-0.5
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 77 +2% z=-1.9
subgraph-mouse-sweep: task duration 674ms 802ms +19% z=0.5
subgraph-mouse-sweep: script duration 85ms 109ms +29% z=1.3
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 60.8 MB 52.3 MB -14%
subgraph-mouse-sweep: DOM nodes 60 -230 -483% z=-132.7
subgraph-mouse-sweep: event listeners 4 -145 -3725% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 14ms 15ms +6%
subgraph-transition-enter: style recalc duration 27ms 29ms +8%
subgraph-transition-enter: layout count 4 4 +0%
subgraph-transition-enter: style recalc count 16 15 -6%
subgraph-transition-enter: task duration 846ms 988ms +17%
subgraph-transition-enter: script duration 29ms 42ms +44%
subgraph-transition-enter: TBT 153ms 167ms +9%
subgraph-transition-enter: heap used 111.4 MB 139.0 MB +25%
subgraph-transition-enter: DOM nodes 12627 12476 -1%
subgraph-transition-enter: event listeners 1639 1294 -21%
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 48ms 55ms +14%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 -0%
viewport-pan-sweep: task duration 3463ms 4299ms +24%
viewport-pan-sweep: script duration 1214ms 1331ms +10%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 71.6 MB 97.2 MB +36%
viewport-pan-sweep: DOM nodes -260 -262 +1%
viewport-pan-sweep: event listeners -113 -119 +5%
vue-large-graph-idle: avg frame time 17ms 17ms -0%
vue-large-graph-idle: p95 frame time 17ms 17ms -0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 10851ms 12624ms +16%
vue-large-graph-idle: script duration 543ms 611ms +12%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 164.5 MB 163.8 MB -0%
vue-large-graph-idle: DOM nodes -8331 -8330 -0%
vue-large-graph-idle: event listeners -16470 -16464 -0%
vue-large-graph-pan: avg frame time 18ms 17ms -2%
vue-large-graph-pan: p95 frame time 17ms 17ms -0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 17ms 19ms +12%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 101 93 -8%
vue-large-graph-pan: task duration 16961ms 16159ms -5%
vue-large-graph-pan: script duration 1012ms 945ms -7%
vue-large-graph-pan: TBT 0ms 12ms
vue-large-graph-pan: heap used 279.4 MB 223.4 MB -20%
vue-large-graph-pan: DOM nodes -8331 -8331 +0%
vue-large-graph-pan: event listeners -16486 -16491 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 2ms 1ms -6% z=-0.3
workflow-execution: style recalc duration 25ms 25ms +1% z=0.4
workflow-execution: layout count 6 5 -17% z=0.1
workflow-execution: style recalc count 19 18 -5% z=0.1
workflow-execution: task duration 130ms 136ms +4% z=1.2
workflow-execution: script duration 30ms 32ms +6% z=0.9
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 56.6 MB 52.4 MB -7%
workflow-execution: DOM nodes 159 164 +3% z=0.4
workflow-execution: event listeners 69 70 +1% z=4.2
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-05-16T03:30:10.241Z",
  "gitSha": "6f1ba30996e2276f916c35e4296a361ac431df7e",
  "branch": "glary/fe-565-asset-file-extension",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2033.9040000000068,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.014,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 495.82300000000004,
      "heapDeltaBytes": 20761032,
      "heapUsedBytes": 69470736,
      "domNodes": -264,
      "jsHeapTotalBytes": 16642048,
      "scriptDurationMs": 23.504000000000005,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2018.9129999999977,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.937000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 400.53999999999996,
      "heapDeltaBytes": 23235380,
      "heapUsedBytes": 71837764,
      "domNodes": 18,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 23.124000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2011.8689999999901,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 47.755,
      "layouts": 12,
      "layoutDurationMs": 4.031,
      "taskDurationMs": 975.126,
      "heapDeltaBytes": 16845360,
      "heapUsedBytes": 65539616,
      "domNodes": -267,
      "jsHeapTotalBytes": 18477056,
      "scriptDurationMs": 140.839,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1836.6320000000087,
      "styleRecalcs": 71,
      "styleRecalcDurationMs": 37.736,
      "layouts": 12,
      "layoutDurationMs": 3.855,
      "taskDurationMs": 839.972,
      "heapDeltaBytes": -4612956,
      "heapUsedBytes": 43691428,
      "domNodes": 51,
      "jsHeapTotalBytes": 15855616,
      "scriptDurationMs": 134.023,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1774.091999999996,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.351,
      "layouts": 6,
      "layoutDurationMs": 0.6579999999999999,
      "taskDurationMs": 401.06700000000006,
      "heapDeltaBytes": 18651472,
      "heapUsedBytes": 71192648,
      "domNodes": 80,
      "jsHeapTotalBytes": 33292288,
      "scriptDurationMs": 32.508,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1720.0740000000678,
      "styleRecalcs": 33,
      "styleRecalcDurationMs": 21.180999999999997,
      "layouts": 6,
      "layoutDurationMs": 0.7919999999999999,
      "taskDurationMs": 381.757,
      "heapDeltaBytes": 21056780,
      "heapUsedBytes": 69328080,
      "domNodes": -210,
      "jsHeapTotalBytes": 15069184,
      "scriptDurationMs": 25.978999999999996,
      "eventListeners": -118,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 589.0550000000303,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.931000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 358.84299999999996,
      "heapDeltaBytes": 12238396,
      "heapUsedBytes": 62158396,
      "domNodes": 18,
      "jsHeapTotalBytes": 16777216,
      "scriptDurationMs": 61.818,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.669999999999998,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 555.7220000000598,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.183000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 358.23400000000004,
      "heapDeltaBytes": 15088232,
      "heapUsedBytes": 64232512,
      "domNodes": 16,
      "jsHeapTotalBytes": 17039360,
      "scriptDurationMs": 61.340999999999994,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2053.4399999999664,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.114,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 669.089,
      "heapDeltaBytes": 48121876,
      "heapUsedBytes": 111289784,
      "domNodes": 20,
      "jsHeapTotalBytes": 52834304,
      "scriptDurationMs": 121.287,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2033.1810000000132,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.566,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 629.148,
      "heapDeltaBytes": 5586960,
      "heapUsedBytes": 64060832,
      "domNodes": -265,
      "jsHeapTotalBytes": 28672,
      "scriptDurationMs": 107.971,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2244.316999999967,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 19.536,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1272.045,
      "heapDeltaBytes": 57497160,
      "heapUsedBytes": 117399332,
      "domNodes": -244,
      "jsHeapTotalBytes": 41652224,
      "scriptDurationMs": 446.21299999999997,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2104.1979999999967,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 16.852000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1123.1689999999999,
      "heapDeltaBytes": 28849988,
      "heapUsedBytes": 79665756,
      "domNodes": -247,
      "jsHeapTotalBytes": 1253376,
      "scriptDurationMs": 413.03700000000003,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3265.7460000000356,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 18.793000000000003,
      "layouts": 60,
      "layoutDurationMs": 7.564,
      "taskDurationMs": 1476.638,
      "heapDeltaBytes": 47391568,
      "heapUsedBytes": 109691780,
      "domNodes": -267,
      "jsHeapTotalBytes": 33378304,
      "scriptDurationMs": 510.653,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3279.4110000000956,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 19.790000000000003,
      "layouts": 60,
      "layoutDurationMs": 7.635999999999998,
      "taskDurationMs": 1518.003,
      "heapDeltaBytes": 49533628,
      "heapUsedBytes": 111232748,
      "domNodes": -266,
      "jsHeapTotalBytes": 38825984,
      "scriptDurationMs": 530.9670000000001,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2046.436999999969,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 11.212000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 665.062,
      "heapDeltaBytes": 6308656,
      "heapUsedBytes": 66838980,
      "domNodes": -264,
      "jsHeapTotalBytes": 1077248,
      "scriptDurationMs": 111.08999999999999,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2034.310000000005,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.195999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 677.2119999999999,
      "heapDeltaBytes": 38738556,
      "heapUsedBytes": 100883268,
      "domNodes": -245,
      "jsHeapTotalBytes": 35713024,
      "scriptDurationMs": 114.60900000000001,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 541.8129999999906,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 11.391,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.881,
      "heapDeltaBytes": 9573496,
      "heapUsedBytes": 58125436,
      "domNodes": 18,
      "jsHeapTotalBytes": 15728640,
      "scriptDurationMs": 121.406,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 562.0890000000145,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 12.094000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 382.541,
      "heapDeltaBytes": 11248884,
      "heapUsedBytes": 64107568,
      "domNodes": 22,
      "jsHeapTotalBytes": 18350080,
      "scriptDurationMs": 123.147,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2018.2120000000054,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.409,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 485.33899999999994,
      "heapDeltaBytes": 20293956,
      "heapUsedBytes": 69364668,
      "domNodes": -263,
      "jsHeapTotalBytes": 19001344,
      "scriptDurationMs": 21.103,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2013.9099999998962,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.779000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 471.49199999999996,
      "heapDeltaBytes": 20282536,
      "heapUsedBytes": 69369068,
      "domNodes": -263,
      "jsHeapTotalBytes": 18477056,
      "scriptDurationMs": 21.011999999999997,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1747.2169999999778,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 41.22200000000001,
      "layouts": 16,
      "layoutDurationMs": 4.721,
      "taskDurationMs": 780.2929999999999,
      "heapDeltaBytes": 2888204,
      "heapUsedBytes": 52254840,
      "domNodes": -199,
      "jsHeapTotalBytes": 14376960,
      "scriptDurationMs": 109.563,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1774.450999999999,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 40.43,
      "layouts": 16,
      "layoutDurationMs": 4.5920000000000005,
      "taskDurationMs": 823.239,
      "heapDeltaBytes": -8826972,
      "heapUsedBytes": 57325784,
      "domNodes": -260,
      "jsHeapTotalBytes": 29843456,
      "scriptDurationMs": 109.071,
      "eventListeners": -161,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1366.1219999999616,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 28.790000000000003,
      "layouts": 4,
      "layoutDurationMs": 15.107,
      "taskDurationMs": 988.0040000000001,
      "heapDeltaBytes": -15571632,
      "heapUsedBytes": 145732148,
      "domNodes": 12476,
      "jsHeapTotalBytes": -20877312,
      "scriptDurationMs": 42.47200000000001,
      "eventListeners": 1294,
      "totalBlockingTimeMs": 167,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8197.969000000001,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 54.723,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4014.308,
      "heapDeltaBytes": 4129896,
      "heapUsedBytes": 63921052,
      "domNodes": -259,
      "jsHeapTotalBytes": 6029312,
      "scriptDurationMs": 1290.332,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8432.446000000027,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 55.047000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4583.072,
      "heapDeltaBytes": 80901644,
      "heapUsedBytes": 139968428,
      "domNodes": -265,
      "jsHeapTotalBytes": 67866624,
      "scriptDurationMs": 1371.136,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12720.027000000016,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12705.286999999998,
      "heapDeltaBytes": -43211528,
      "heapUsedBytes": 172229304,
      "domNodes": -8331,
      "jsHeapTotalBytes": 26275840,
      "scriptDurationMs": 622.2220000000001,
      "eventListeners": -16463,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12554.276999999956,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12542.130000000001,
      "heapDeltaBytes": -35933400,
      "heapUsedBytes": 171368296,
      "domNodes": -8329,
      "jsHeapTotalBytes": 23916544,
      "scriptDurationMs": 599.477,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 17680.743000000006,
      "styleRecalcs": 118,
      "styleRecalcDurationMs": 21.228000000000023,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17658.280000000002,
      "heapDeltaBytes": 29490520,
      "heapUsedBytes": 292661020,
      "domNodes": -8331,
      "jsHeapTotalBytes": 36761600,
      "scriptDurationMs": 993.458,
      "eventListeners": -16490,
      "totalBlockingTimeMs": 23,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14680.05400000004,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 17.45100000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14659.482,
      "heapDeltaBytes": -32399984,
      "heapUsedBytes": 175779228,
      "domNodes": -8331,
      "jsHeapTotalBytes": -3170304,
      "scriptDurationMs": 895.8539999999999,
      "eventListeners": -16492,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 461.49699999995164,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 27.589999999999996,
      "layouts": 5,
      "layoutDurationMs": 1.6059999999999999,
      "taskDurationMs": 143.81199999999995,
      "heapDeltaBytes": 5489844,
      "heapUsedBytes": 55586420,
      "domNodes": 170,
      "jsHeapTotalBytes": 524288,
      "scriptDurationMs": 34.454,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 451.10299999998915,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 22.712999999999997,
      "layouts": 5,
      "layoutDurationMs": 1.3920000000000001,
      "taskDurationMs": 127.37500000000001,
      "heapDeltaBytes": 5173164,
      "heapUsedBytes": 54376744,
      "domNodes": 157,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 28.994,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

coderabbitai[bot]
coderabbitai Bot previously approved these changes May 16, 2026
@codecov
Copy link
Copy Markdown

codecov Bot commented May 16, 2026

Codecov Report

❌ Patch coverage is 66.66667% with 7 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/platform/assets/components/MediaAssetCard.vue 0.00% 7 Missing ⚠️
@@             Coverage Diff             @@
##             main   #12306       +/-   ##
===========================================
- Coverage   74.67%   59.58%   -15.10%     
===========================================
  Files        1526     1412      -114     
  Lines       95359    71888    -23471     
  Branches    27134    19029     -8105     
===========================================
- Hits        71212    42834    -28378     
- Misses      23285    28581     +5296     
+ Partials      862      473      -389     
Flag Coverage Δ
e2e ?
unit 59.58% <66.66%> (+<0.01%) ⬆️

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

Files with missing lines Coverage Δ
.../components/sidebar/tabs/AssetsSidebarListView.vue 75.00% <100.00%> (+3.33%) ⬆️
src/platform/assets/utils/assetMetadataUtils.ts 98.48% <100.00%> (+29.79%) ⬆️
src/platform/assets/components/MediaAssetCard.vue 5.45% <0.00%> (-55.30%) ⬇️

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

Adds AssetsSidebarListView tests asserting the joined description string
(extension + size, extension + execution time, extension + duration,
extension-only) end-to-end through the component, addressing the review
suggestion to exercise the rendered output, not just the helper.
@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

Thanks for the review!

For follow-up context: a self-review surfaced one suggestion — to exercise the joined description string (PNG 1.23s, MP4 12 MB, etc.) at the component level rather than only at the helper level. Addressed in b558b4a by extending AssetsSidebarListView.test.ts with four cases covering extension-only, extension + size, extension + execution time, and extension + duration.

Local checks (pnpm typecheck, targeted Vitest, lint, format) all green.

coderabbitai[bot]
coderabbitai Bot previously approved these changes May 16, 2026
Add JSDoc on getAssetSecondaryText (sidebar list view) and the metaInfo
computed (MediaAssetCard) describing the <EXT> <detail> composition,
priority ordering, and fallback semantics. Resolves CodeRabbit's
docstring-coverage pre-merge warning.
@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

Thanks for the review. CodeRabbit confirmed no actionable issues in the recent walkthrough — the only failing pre-merge check was Docstring Coverage (66.67% < 80%). Addressed in 28175e0 by adding JSDoc to both description-line composition sites:

  • getAssetSecondaryText in AssetsSidebarListView.vue — documents the <EXT> <detail> format and the execution-time → duration → file-size priority.
  • metaInfo computed in MediaAssetCard.vue — documents the same composition and the asymmetric image-dimensions-vs-file-size branching (replacing the pre-existing one-line comment).

pnpm typecheck and the 69 affected unit tests still pass.

@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

CodeRabbit's latest review on commit 28175e0 is APPROVED with no inline comments. The Docstring Coverage pre-merge warning is non-blocking and stayed at 66.67% after my docstring additions on both production composition sites, which suggests the metric is counting test-file helpers/stubs in AssetsSidebarListView.test.ts (e.g. buildAsset, buildOutputItem, renderListView, VirtualGridStub, AssetsListItemStub). Per AGENTS.md ("Be parsimonious in testing, do not write redundant tests" and "avoid comments unless absolutely necessary") and consistent with neighbouring test files (assetMetadataUtils.test.ts, AssetsListItem.test.ts, ActiveMediaAssetCard.test.ts), I'm leaving those undocumented. Happy to revisit if a reviewer disagrees.

@DrJKL DrJKL added the Design Used to request Product feedback on design decisions label May 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Design Used to request Product feedback on design decisions

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants