Skip to content

Update asset schema and fix incorrect tests - #14858

Merged
DrJKL merged 4 commits into
mainfrom
austin/asset-schema-update
Aug 11, 2026
Merged

Update asset schema and fix incorrect tests#14858
DrJKL merged 4 commits into
mainfrom
austin/asset-schema-update

Conversation

@AustinMroz

Copy link
Copy Markdown
Collaborator

A tiny 6 line change to make the asset item schema match the API, and a whooole lot of test fixes.

@AustinMroz
AustinMroz requested a review from a team August 6, 2026 23:03
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Aug 6, 2026
@coderabbitai

coderabbitai Bot commented Aug 6, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 36040ed7-06ed-44aa-a6ba-d362b1f5e60a

📥 Commits

Reviewing files that changed from the base of the PR and between 6a01ef2 and d117f63.

📒 Files selected for processing (2)
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/composables/useMediaAssetFiltering.test.ts

📝 Walkthrough

Walkthrough

The asset schema now derives fields from zIngestAsset. Asset-producing code populates matching created_at and updated_at timestamps. Asset fixtures use fromPartial, and browser tests configure model-library options through the shared fixture.

Changes

Asset metadata and fixture updates

Layer / File(s) Summary
Asset metadata contract and production mappings
src/platform/assets/schemas/assetSchema.ts, src/platform/assets/composables/media/assetMappers.ts, src/platform/assets/utils/outputAssetUtil.ts, src/platform/missingMedia/missingMediaAssetResolver.ts, src/platform/assets/components/MediaAssetCard.vue
The asset schema derives fields from zIngestAsset. Asset-producing paths populate matching creation and update timestamps.
Browser asset and model-library fixture flow
browser_tests/fixtures/*, browser_tests/tests/sidebar/modelLibraryAssetMode.spec.ts
The browser fixture accepts asset operators and model folders. Sidebar tests use these options and feature flag setup.
Asset fixture construction migration
src/components/sidebar/tabs/*, src/platform/assets/**/*test.ts, src/platform/assets/**/*.stories.ts, src/platform/missingMedia/*test.ts, src/platform/workflow/*test.ts, src/renderer/extensions/*test.ts, src/stores/assetsStore.test.ts
Stories and tests construct partial asset values with fromPartial. Fixture timestamps and optional metadata match the updated asset shape.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

Suggested reviewers: drjkl


Important

Pre-merge checks failed

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

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description mentions the main changes but omits the required Summary, Changes, Review Focus, and Screenshots sections. Complete the required template sections with specific changes, breaking changes, dependencies, review focus, and screenshots when applicable.
End-To-End Regression Coverage For Fixes ❓ Inconclusive The changed-file list is available, but the PR title and commit subjects are not; the required bug-fix signal cannot be verified from the allowed metadata. Provide the PR title or commit subjects to determine whether the bug-fix condition applies.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the asset schema update and the related test fixes.
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 Changed files only update asset schemas, fixtures, tests, and browser-test helpers; no ADR 0003/0008 entity mutations, APIs, callbacks, or ECS structures appear.
✨ 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 austin/asset-schema-update

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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

Caution

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

⚠️ Outside diff range comments (1)
src/components/sidebar/tabs/AssetsSidebarListView.stories.ts (1)

77-133: 🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

Keep partial asset fixtures compliant with AssetItem.

AssetItem.updated_at is required, so Storybook assets built with fromPartial should still include it. The sidebar test fixture should keep a type-only check, such as satisfies Partial<AssetItem>, so future schema changes remain caught.

  • src/components/sidebar/tabs/AssetsSidebarListView.stories.ts#L77-L133: add updated_at: baseTimestamp to each sample asset that needs it.
  • src/components/sidebar/tabs/AssetsSidebarTab.test.ts#L9-L19: keep a type-only partial AssetItem check for the hoisted fixture.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/components/sidebar/tabs/AssetsSidebarListView.stories.ts` around lines 77
- 133, Add updated_at: baseTimestamp to every partial asset fixture in
src/components/sidebar/tabs/AssetsSidebarListView.stories.ts lines 77-133. In
src/components/sidebar/tabs/AssetsSidebarTab.test.ts lines 9-19, retain a
type-only satisfies Partial<AssetItem> check for the hoisted fixture so schema
changes remain validated.

Source: Path instructions

🤖 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/assets/components/MediaAssetCard.stories.ts`:
- Around line 1-2: Remove the fromPartial workaround and update every
MediaAssetCard story fixture, including sampleAsset and the WebM, GIF, and grid
fixtures, to provide both required timestamp fields from the AssetItem contract.
Use one complete realistic ComfyUI-compatible base fixture and spread it where
appropriate, preserving each story’s specific asset values.

---

Outside diff comments:
In `@src/components/sidebar/tabs/AssetsSidebarListView.stories.ts`:
- Around line 77-133: Add updated_at: baseTimestamp to every partial asset
fixture in src/components/sidebar/tabs/AssetsSidebarListView.stories.ts lines
77-133. In src/components/sidebar/tabs/AssetsSidebarTab.test.ts lines 9-19,
retain a type-only satisfies Partial<AssetItem> check for the hoisted fixture so
schema changes remain validated.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 82a00d6b-3395-4587-96c6-803346acf888

📥 Commits

Reviewing files that changed from the base of the PR and between db147c0 and a0d38e6.

📒 Files selected for processing (40)
  • src/components/sidebar/tabs/AssetsSidebarListView.stories.ts
  • src/components/sidebar/tabs/AssetsSidebarListView.test.ts
  • src/components/sidebar/tabs/AssetsSidebarTab.test.ts
  • src/composables/node/startModelNodeDragFromAsset.test.ts
  • src/platform/assets/components/AssetCard.test.ts
  • src/platform/assets/components/MediaAssetCard.stories.ts
  • src/platform/assets/components/MediaAssetCard.test.ts
  • src/platform/assets/components/MediaAssetCard.vue
  • src/platform/assets/components/MediaAssetContextMenu.test.ts
  • src/platform/assets/components/MediaVideoTop.test.ts
  • src/platform/assets/composables/media/assetMappers.ts
  • src/platform/assets/composables/useAssetBrowserDialog.test.ts
  • src/platform/assets/composables/useAssetGridSelection.test.ts
  • src/platform/assets/composables/useAssetSelection.property.test.ts
  • src/platform/assets/composables/useAssetSelection.test.ts
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/composables/useMediaAssetFiltering.test.ts
  • src/platform/assets/composables/useMediaAssetGalleryStore.test.ts
  • src/platform/assets/composables/useOutputStacks.property.test.ts
  • src/platform/assets/composables/useOutputStacks.test.ts
  • src/platform/assets/composables/useUploadModelWizard.test.ts
  • src/platform/assets/schemas/assetSchema.ts
  • src/platform/assets/services/assetService.test.ts
  • src/platform/assets/utils/assetFilterUtils.property.test.ts
  • src/platform/assets/utils/assetFilterUtils.test.ts
  • src/platform/assets/utils/assetMetadataUtils.test.ts
  • src/platform/assets/utils/createAssetWidget.test.ts
  • src/platform/assets/utils/outputAssetUtil.ts
  • src/platform/assets/utils/resolveModelNodeFromAsset.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.ts
  • src/platform/missingMedia/missingMediaScan.test.ts
  • src/platform/workflow/utils/workflowExtractionUtil.test.ts
  • src/renderer/extensions/linearMode/LinearPreview.test.ts
  • src/renderer/extensions/linearMode/OutputHistory.test.ts
  • src/renderer/extensions/linearMode/useOutputHistory.test.ts
  • src/renderer/extensions/vueNodes/widgets/components/WidgetSelectDropdown.test.ts
  • src/renderer/extensions/vueNodes/widgets/composables/useAssetWidgetData.test.ts
  • src/renderer/extensions/vueNodes/widgets/composables/useWidgetSelectItems.test.ts
  • src/stores/assetsStore.test.ts

Comment thread src/platform/assets/components/MediaAssetCard.stories.ts
coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 6, 2026
@github-actions

github-actions Bot commented Aug 6, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/11/2026, 09:40:29 PM UTC

Links

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

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

📦 Bundle: 8.69 MB gzip 🟢 -36 B

Details

Summary

  • Raw size: 36.7 MB baseline 36.7 MB — 🟢 -291 B
  • Gzip: 8.69 MB baseline 8.69 MB — 🟢 -36 B
  • Brotli: 6.06 MB baseline 6.06 MB — 🟢 -70 B
  • Bundles: 436 current • 436 baseline • 145 added / 145 removed

Category Glance
Data & Services 🟢 -291 B (3.5 MB) · Vendor & Third-Party ⚪ 0 B (16.3 MB) · Other ⚪ 0 B (14 MB) · Graph Workspace ⚪ 0 B (1.36 MB) · Panels & Settings ⚪ 0 B (565 kB) · Utilities & Hooks ⚪ 0 B (550 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-Bf-yNGxf.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/index-XOO5r9j7.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.84 kB 🔴 +1.59 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-B81y1Mye.js (removed) 1.35 MB 🟢 -1.35 MB 🟢 -294 kB 🟢 -221 kB
assets/GraphView-D3yn5Mn5.js (new) 1.35 MB 🔴 +1.35 MB 🔴 +294 kB 🔴 +221 kB
assets/WidgetCompositor-CDwnhaC9.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.75 kB 🔴 +2.45 kB
assets/WidgetCompositor-CqvWbDN8.js (removed) 8.17 kB 🟢 -8.17 kB 🟢 -2.75 kB 🟢 -2.45 kB

Status: 2 added / 2 removed / 1 unchanged

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-CKYk33AJ.js (removed) 25 kB 🟢 -25 kB 🟢 -6.24 kB 🟢 -5.53 kB
assets/CloudSurveyView-CY8r7DJc.js (new) 25 kB 🔴 +25 kB 🔴 +6.24 kB 🔴 +5.52 kB
assets/CloudLayoutView-bMhAiFVf.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.56 kB 🟢 -5.74 kB
assets/CloudLayoutView-iHzQiZCP.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.56 kB 🔴 +5.74 kB
assets/UserCheckView-D3_s53Wm.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.9 kB
assets/UserCheckView-Z0ogcKzb.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.89 kB
assets/CloudLoginView-Ba_t4Vm6.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.55 kB 🔴 +2.26 kB
assets/CloudLoginView-D9T64cVJ.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.55 kB 🟢 -2.26 kB
assets/useCloudAuthPage-BOoVGnxK.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.51 kB 🟢 -2.21 kB
assets/useCloudAuthPage-CzgDi3Hd.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.51 kB 🔴 +2.2 kB
assets/CloudSignupView-BgcK04uR.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +2.17 kB 🔴 +1.91 kB
assets/CloudSignupView-Dlx0AIAY.js (removed) 6.56 kB 🟢 -6.56 kB 🟢 -2.17 kB 🟢 -1.9 kB
assets/WidgetTextPreview-BIGStghl.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.88 kB
assets/WidgetTextPreview-DdErTUU2.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.89 kB
assets/CloudSubscriptionRedirectView-9G_mZQ15.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.96 kB
assets/CloudSubscriptionRedirectView-DaRdtZxF.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.96 kB
assets/UserSelectView-DBwXFkTr.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.95 kB 🔴 +1.71 kB
assets/UserSelectView-HRIXPFZx.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.95 kB 🟢 -1.71 kB
assets/CloudForgotPasswordView-B1fdg9tJ.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudForgotPasswordView-CZ23-tXW.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.72 kB 🔴 +1.49 kB
assets/CloudAuthTimeoutView-BKP03nHE.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.33 kB
assets/CloudAuthTimeoutView-zuhzO_4f.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.34 kB
assets/OAuthLayoutView-CZH2_cVN.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +696 B 🔴 +600 B
assets/OAuthLayoutView-DPdSwB1A.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -697 B 🟢 -599 B
assets/WidgetTextPreview-CLz7Xeia.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +90 B
assets/WidgetTextPreview-DZHS87iT.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -87 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-Bb0BveK4.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.94 kB 🔴 +8.81 kB
assets/KeybindingPanel-DXFdB4Mz.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.94 kB 🟢 -8.81 kB
assets/SecretsPanel-Ce1E7eE3.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.87 kB 🔴 +6.9 kB
assets/SecretsPanel-DNTL7-0w.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.87 kB 🟢 -6.89 kB
assets/CreditsPanel-CFOtXndp.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.2 kB 🟢 -2.8 kB
assets/CreditsPanel-CP1ioakN.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.2 kB 🔴 +2.82 kB
assets/AboutPanel-BwjYnm24.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.02 kB 🔴 +2.73 kB
assets/AboutPanel-BWtEg8LG.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.02 kB 🟢 -2.72 kB
assets/ExtensionPanel-b_48rOHH.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/ExtensionPanel-DlMh_EMD.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.23 kB
assets/ServerConfigPanel-BBZc_0J9.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.93 kB 🟢 -1.72 kB
assets/ServerConfigPanel-X09tpH8M.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.93 kB 🔴 +1.72 kB
assets/UserPanel-ClDKUWD7.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/UserPanel-CxMEbPkV.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/refreshRemoteConfig-D8EXd-u5.js (new) 3.44 kB 🔴 +3.44 kB 🔴 +1.33 kB 🔴 +1.17 kB
assets/refreshRemoteConfig-DYZ0lbVI.js (removed) 3.44 kB 🟢 -3.44 kB 🟢 -1.33 kB 🟢 -1.17 kB
assets/cloudRemoteConfig-Bdga5SiZ.js (removed) 951 B 🟢 -951 B 🟢 -515 B 🟢 -419 B
assets/cloudRemoteConfig-oHmgZext.js (new) 951 B 🔴 +951 B 🔴 +514 B 🔴 +420 B
assets/refreshRemoteConfig-B5UCpeyA.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +77 B
assets/refreshRemoteConfig-Dv72mMXJ.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -87 B

Status: 10 added / 10 removed / 16 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-BOzs0amc.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +4.31 kB 🔴 +3.76 kB
assets/SignUpForm-CImUOS41.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -4.31 kB 🟢 -3.76 kB
assets/auth-BKPJsHXW.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.28 kB 🟢 -1.1 kB
assets/auth-BokyovlP.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.28 kB 🔴 +1.1 kB
assets/UpdatePasswordContent-1lMjX_u4.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +842 B 🔴 +733 B
assets/UpdatePasswordContent-BhkGouRB.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -842 B 🟢 -734 B
assets/authStore-Cd8-yMM0.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +105 B
assets/authStore-CtqmSPh0.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -108 B
assets/workspaceAuthStore-DPLbsuaA.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +106 B
assets/workspaceAuthStore-DPMtRbH-.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -105 B
assets/auth-CqVUbcQj.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -83 B
assets/auth-DxTd3LTI.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +80 B

Status: 6 added / 6 removed / 4 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-DvZ--KF1.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/ComfyHubPublishDialog-iHePV07Q.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/useShareDialog-D6Ii56tw.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.04 kB
assets/useShareDialog-n0DdFgM7.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.69 kB 🔴 +5.03 kB
assets/feedbackDialog-4aAdwg8l.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.87 kB 🟢 -1.59 kB
assets/feedbackDialog-CG9J8L_R.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.86 kB 🔴 +1.59 kB
assets/useRangeEditor-BCIPeND7.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.04 kB
assets/useRangeEditor-D3ttNspR.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.04 kB
assets/useLayerEditor-BOvxNR3T.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +491 B 🔴 +407 B
assets/useLayerEditor-BPN_qhoD.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -490 B 🟢 -406 B
assets/ComfyHubPublishDialog-BqWBwcpu.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -87 B
assets/ComfyHubPublishDialog-CO2CuIaJ.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +88 B
assets/useSubscriptionDialog-DSn_VhDE.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +86 B
assets/useSubscriptionDialog-YC4-xqU4.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -96 B

Status: 7 added / 7 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-D06o20ss.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.96 kB 🔴 +3.51 kB
assets/ComfyQueueButton-DnmYCscK.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.97 kB 🟢 -3.51 kB
assets/useTerminalTabs-CH8RE_A0.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.27 kB
assets/useTerminalTabs-UiXlktCL.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.26 kB
assets/InviteMembersForm-CkBxrXk4.js (new) 8.2 kB 🔴 +8.2 kB 🔴 +2.72 kB 🔴 +2.44 kB
assets/InviteMembersForm-DV0480i4.js (removed) 8.2 kB 🟢 -8.2 kB 🟢 -2.72 kB 🟢 -2.44 kB
assets/SubscribeButton-B-AzjpNE.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +966 B 🔴 +845 B
assets/SubscribeButton-Cp9RdJNz.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -967 B 🟢 -847 B
assets/cloudFeedbackTopbarButton-Bi4NMr0L.js (removed) 705 B 🟢 -705 B 🟢 -421 B 🟢 -356 B
assets/cloudFeedbackTopbarButton-BoTDeLiQ.js (new) 705 B 🔴 +705 B 🔴 +423 B 🔴 +360 B
assets/ComfyQueueButton-BAg1tXyT.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -96 B
assets/ComfyQueueButton-CWaJOYj3.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +95 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.5 MB (baseline 3.5 MB) • 🟢 -291 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-B2-XQl-J.js (removed) 3.22 MB 🟢 -3.22 MB 🟢 -747 kB 🟢 -562 kB
assets/settingStore-C6eSZaMK.js (new) 3.22 MB 🔴 +3.22 MB 🔴 +747 kB 🔴 +562 kB
assets/load3dService-C2w-Rv8A.js (new) 132 kB 🔴 +132 kB 🔴 +29.3 kB 🔴 +24.6 kB
assets/load3dService-D98F004d.js (removed) 132 kB 🟢 -132 kB 🟢 -29.3 kB 🟢 -24.6 kB
assets/api-BtSYSJKL.js (new) 98.3 kB 🔴 +98.3 kB 🔴 +27.2 kB 🔴 +23.4 kB
assets/api-vEHwkmAU.js (removed) 98.3 kB 🟢 -98.3 kB 🟢 -27.2 kB 🟢 -23.4 kB
assets/workflowShareService-Bcv3Oy2u.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/workflowShareService-BMGV7tny.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/keybindingService-BtuMAxfn.js (new) 6.89 kB 🔴 +6.89 kB 🔴 +1.73 kB 🔴 +1.5 kB
assets/keybindingService-CvETLcPs.js (removed) 6.89 kB 🟢 -6.89 kB 🟢 -1.73 kB 🟢 -1.5 kB
assets/releaseStore-CpzntCxw.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.78 kB
assets/releaseStore-odR82fVp.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.78 kB
assets/systemStatsStore-BMuWp6yw.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/systemStatsStore-C8g_MUtE.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/userStore-BVJEbU_X.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -897 B 🟢 -793 B
assets/userStore-CCco9OUK.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +898 B 🔴 +791 B
assets/audioService-EbeBKLtk.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +828 B 🔴 +720 B
assets/audioService-xbyw0XZE.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -828 B 🟢 -721 B
assets/dialogService-mxysN6Uy.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +90 B
assets/dialogService-rOoP0-NW.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -92 B
assets/releaseStore-8bvpyGIp.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +87 B
assets/releaseStore-V_wjlP4E.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -81 B
assets/settingStore-BawAptTK.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -87 B
assets/settingStore-bDpzPirU.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +81 B
assets/assetsStore-B9lwfspg.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +82 B
assets/assetsStore-CMQc4ylO.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -86 B
assets/api-BWSe5gtY.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B
assets/api-qf1_O0Bw.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B

Status: 14 added / 14 removed / 3 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BakqdX_0.js (new) 236 kB 🔴 +236 kB 🔴 +53 kB 🔴 +43.1 kB
assets/useConflictDetection-BavR2eqa.js (removed) 236 kB 🟢 -236 kB 🟢 -53 kB 🟢 -43.1 kB
assets/useLayerEditorSession-D94DHfvX.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLayerEditorSession-YPP5TboU.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLoad3d-D-r2kLPh.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.15 kB
assets/useLoad3d-DXAQH_sr.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.16 kB
assets/useLoad3dViewer-BfPnpe4j.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.36 kB
assets/useLoad3dViewer-BThKgXOw.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.36 kB
assets/useImageCrop-BrHvEJuy.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.99 kB
assets/useImageCrop-Cv3kU56Q.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useDowngradeToPersonal-DkOZ-nYp.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.75 kB 🟢 -2.37 kB
assets/useDowngradeToPersonal-DSGiBluc.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.75 kB 🔴 +2.37 kB
assets/useFeatureFlags-CBc6yI0b.js (new) 6.99 kB 🔴 +6.99 kB 🔴 +2 kB 🔴 +1.7 kB
assets/useFeatureFlags-CehrfBVw.js (removed) 6.99 kB 🟢 -6.99 kB 🟢 -2 kB 🟢 -1.7 kB
assets/useCompositorLayers-2ckUZK39.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +897 B 🔴 +797 B
assets/useCompositorLayers-ihppcY9D.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -898 B 🟢 -810 B
assets/assetPreviewUtil-DaQ57H84.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -970 B 🟢 -835 B
assets/assetPreviewUtil-nawzfN9J.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +970 B 🔴 +839 B
assets/useUpstreamValue-BKAuER2-.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -758 B 🟢 -678 B
assets/useUpstreamValue-DHi_08Ey.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +758 B 🔴 +676 B
assets/useWorkspaceTierLabel-CaLlMNgj.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +812 B 🔴 +698 B
assets/useWorkspaceTierLabel-CAmPKtPb.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -816 B 🟢 -698 B
assets/subscriptionCheckoutUtil-CUWNcaS9.js (new) 877 B 🔴 +877 B 🔴 +523 B 🔴 +458 B
assets/subscriptionCheckoutUtil-mO2rtnWV.js (removed) 877 B 🟢 -877 B 🟢 -522 B 🟢 -458 B
assets/useSessionCookie-CzzAFMkQ.js (new) 652 B 🔴 +652 B 🔴 +337 B 🔴 +294 B
assets/useSessionCookie-D0LzAa1x.js (removed) 652 B 🟢 -652 B 🟢 -337 B 🟢 -291 B
assets/useLoad3d-_W4Nprvn.js (new) 311 B 🔴 +311 B 🔴 +165 B 🔴 +152 B
assets/useLoad3d-BMDLlhOp.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -147 B
assets/useSessionCookie-BrPcqs6I.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -77 B
assets/useSessionCookie-DwbBTZmM.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +83 B
assets/useFeatureFlags-CYqPkbIz.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +80 B
assets/useFeatureFlags-dKU7Uacj.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -84 B
assets/useLoad3dViewer-BFO251Uh.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -84 B
assets/useLoad3dViewer-CeRScJaD.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +86 B
assets/useCurrentUser-C98fKHQs.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +80 B
assets/useCurrentUser-DgHQJ_X-.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -86 B

Status: 18 added / 18 removed / 20 unchanged

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

External libraries and shared vendor chunks

Status: 17 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-bo0o9Roc.js (removed) 115 kB 🟢 -115 kB 🟢 -29.7 kB 🟢 -25.1 kB
assets/core-IfjwmzEB.js (new) 115 kB 🔴 +115 kB 🔴 +29.7 kB 🔴 +25.1 kB
assets/WidgetSelect-CGP-sVfH.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-qUTIiZBG.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/SubscriptionPanelContentWorkspace-PxtEzc-y.js (removed) 80 kB 🟢 -80 kB 🟢 -15.8 kB 🟢 -13.6 kB
assets/SubscriptionPanelContentWorkspace-VC791dP6.js (new) 80 kB 🔴 +80 kB 🔴 +15.8 kB 🔴 +13.6 kB
assets/Load3D-BuztXgZj.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -9.98 kB
assets/Load3D-SyLusnyO.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +9.98 kB
assets/WidgetVideoEdit-Cp2F4kvM.js (removed) 67.5 kB 🟢 -67.5 kB 🟢 -15.7 kB 🟢 -13.9 kB
assets/WidgetVideoEdit-siTEbM2M.js (new) 67.5 kB 🔴 +67.5 kB 🔴 +15.7 kB 🔴 +13.9 kB
assets/SubscriptionTransitionPreviewWorkspace-BTX__cuG.js (new) 66.4 kB 🔴 +66.4 kB 🔴 +13.4 kB 🔴 +11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-CtBS18rQ.js (removed) 66.4 kB 🟢 -66.4 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/WorkspaceSettingsPanelContent-B4DjwSyX.js (removed) 61.7 kB 🟢 -61.7 kB 🟢 -13.2 kB 🟢 -11.5 kB
assets/WorkspaceSettingsPanelContent-BpSK5x4J.js (new) 61.7 kB 🔴 +61.7 kB 🔴 +13.2 kB 🔴 +11.5 kB
assets/Preview3d-B_haKT1-.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.3 kB 🟢 -7.25 kB
assets/Preview3d-CsuS6AoK.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.31 kB 🔴 +7.24 kB
assets/main-BjvWTfgc.js (removed) 45.1 kB 🟢 -45.1 kB 🟢 -13.1 kB 🟢 -11.4 kB
assets/main-BtnR_D1H.js (new) 45.1 kB 🔴 +45.1 kB 🔴 +13.1 kB 🔴 +11.4 kB
assets/SubscriptionRequiredDialogContentUnified-BSj0Uuf-.js (new) 42.6 kB 🔴 +42.6 kB 🔴 +9.35 kB 🔴 +8.16 kB
assets/SubscriptionRequiredDialogContentUnified-DA0voyUu.js (removed) 42.6 kB 🟢 -42.6 kB 🟢 -9.35 kB 🟢 -8.16 kB
assets/LayerEditorContent-C5cuUBjX.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.61 kB 🟢 -8.44 kB
assets/LayerEditorContent-DeRAge7Q.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.61 kB 🔴 +8.44 kB
assets/WidgetBoundingBoxes-BWV1YqW7.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.12 kB
assets/WidgetBoundingBoxes-zJMzry6i.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.13 kB
assets/WidgetPainter-BdDj6rGh.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.87 kB 🟢 -6.98 kB
assets/WidgetPainter-CHWx7yEr.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.87 kB 🔴 +6.97 kB
assets/Load3dViewerContent-CA8y4ZvT.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.28 kB 🟢 -5.45 kB
assets/Load3dViewerContent-Cz_E2U6S.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.45 kB
assets/SubscriptionRequiredDialogContent-BrTDIhWR.js (new) 27 kB 🔴 +27 kB 🔴 +6.37 kB 🔴 +5.61 kB
assets/SubscriptionRequiredDialogContent-efiXFbHm.js (removed) 27 kB 🟢 -27 kB 🟢 -6.37 kB 🟢 -5.62 kB
assets/SubscriptionRequiredDialogContentWorkspace--yb2Qt7c.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.79 kB 🔴 +5.1 kB
assets/SubscriptionRequiredDialogContentWorkspace-BQvoAcU6.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.79 kB 🟢 -5.09 kB
assets/CreditsTile-CEBgxLiS.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.64 kB 🟢 -5.82 kB
assets/CreditsTile-Cqtmisr1.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.64 kB 🔴 +5.83 kB
assets/load3d-BPUqCOP5.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.4 kB 🔴 +4.67 kB
assets/load3d-XMN0k8U0.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.41 kB 🟢 -4.67 kB
assets/CurrentUserPopoverWorkspace-BBzy2VLb.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -4.84 kB 🟢 -4.31 kB
assets/CurrentUserPopoverWorkspace-DHOUrG5t.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +4.84 kB 🔴 +4.32 kB
assets/SignInContent-DbvrRLzs.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.09 kB 🔴 +4.45 kB
assets/SignInContent-DRTP-0SF.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.09 kB 🟢 -4.44 kB
assets/WidgetRecordAudio-Bfp2S3nj.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.59 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-k3lo0u46.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.1 kB
assets/WidgetInputNumber-CyLghhW7.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetInputNumber-CZ4Vn5-Z.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/WidgetRange-BNyU4OeL.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.13 kB
assets/WidgetRange-CuSSDGRt.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/WaveAudioPlayer-Bf_-iEPC.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.47 kB 🟢 -3.04 kB
assets/WaveAudioPlayer-Z2lpyUlE.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.47 kB 🔴 +3.05 kB
assets/WidgetCurve-BHntRPhL.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.15 kB
assets/WidgetCurve-BYvp7tMs.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.47 kB 🔴 +3.15 kB
assets/TeamWorkspacesDialogContent-CB48TEml.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.96 kB 🟢 -2.63 kB
assets/TeamWorkspacesDialogContent-DgPIfeyE.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.96 kB 🔴 +2.63 kB
assets/onboardingCloudRoutes-BGrOH1MC.js (new) 9.33 kB 🔴 +9.33 kB 🔴 +2.84 kB 🔴 +2.44 kB
assets/onboardingCloudRoutes-CGgbWz_7.js (removed) 9.33 kB 🟢 -9.33 kB 🟢 -2.84 kB 🟢 -2.43 kB
assets/Load3DConfiguration-B6Nc3Wot.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-SyeEznWo.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.29 kB
assets/WidgetImageCrop-D5Rutrip.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.65 kB 🔴 +2.34 kB
assets/WidgetImageCrop-DsJ-b1rp.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.65 kB 🟢 -2.36 kB
assets/SetMemberCreditLimitDialogContent-CCVJ6KhL.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/SetMemberCreditLimitDialogContent-D8zIoVYy.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.06 kB
assets/nodeTemplates-DdREKRau.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.85 kB 🟢 -2.51 kB
assets/nodeTemplates-DRfIdtiu.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.85 kB 🔴 +2.5 kB
assets/NightlySurveyController-CVx_1Xsb.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.24 kB
assets/NightlySurveyController-DggerIr_.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/CloudRunButtonWrapper-BDB1tab6.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.17 kB 🟢 -1.91 kB
assets/CloudRunButtonWrapper-BwBXlWZX.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.17 kB 🔴 +1.91 kB
assets/WidgetWithControl-3HwBdJy_.js (new) 6.41 kB 🔴 +6.41 kB 🔴 +2.61 kB 🔴 +2.31 kB
assets/WidgetWithControl-CJO6X_L2.js (removed) 6.41 kB 🟢 -6.41 kB 🟢 -2.61 kB 🟢 -2.31 kB
assets/missingModelMetadata--OsqJpnT.js (new) 6.17 kB 🔴 +6.17 kB 🔴 +2.13 kB 🔴 +1.86 kB
assets/missingModelMetadata-ClP26y1K.js (removed) 6.17 kB 🟢 -6.17 kB 🟢 -2.13 kB 🟢 -1.86 kB
assets/CancelSubscriptionDialogContent-BwUV97Hz.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/CancelSubscriptionDialogContent-BY0rMd6A.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.74 kB
assets/load3dPreviewExtensions-DkjUfR1v.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.59 kB
assets/load3dPreviewExtensions-H19bjd9w.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/launchCancellationFlow-DCzGkWLN.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/launchCancellationFlow-q6iA0fPF.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.56 kB
assets/CreateWorkspaceDialogContent-BpmaKeB9.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-Mf-k7H0E.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/ChangeMemberRoleDialogContent-Cx42NEp_.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/ChangeMemberRoleDialogContent-zIUtEFY-.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.63 kB 🟢 -1.42 kB
assets/InviteMemberDialogContent-CdMGVbk4.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/InviteMemberDialogContent-Cvk_w6XX.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/EditWorkspaceDialogContent-DZple4ek.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/EditWorkspaceDialogContent-pyVjw357.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/WidgetTextarea-Ds_C86V3.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.87 kB 🟢 -1.63 kB
assets/WidgetTextarea-OSf793IC.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/saveMesh-BQKpZLus.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.34 kB
assets/saveMesh-BRMgVKTS.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.34 kB
assets/WorkspacePanelContent-Cz6if3Xe.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.63 kB 🔴 +1.43 kB
assets/WorkspacePanelContent-Dd_O-80L.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.62 kB 🟢 -1.43 kB
assets/ValueControlPopover-Ca83qqv0.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/ValueControlPopover-Vq-K8l7e.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/DeleteWorkspaceDialogContent-BBZNgoLf.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/DeleteWorkspaceDialogContent-DqdBAgao.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/RemoveMemberDialogContent-CAlEp2Ek.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RemoveMemberDialogContent-CULuCvmN.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/RevokeInviteDialogContent-CrDfR0D6.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/RevokeInviteDialogContent-CVsSrVJm.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.21 kB
assets/LeaveWorkspaceDialogContent-BdSCJg0D.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/LeaveWorkspaceDialogContent-DVcdwOmC.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/InviteMemberUpsellDialogContent-BusvtrXU.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/InviteMemberUpsellDialogContent-RivKM6JS.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.07 kB
assets/workspaceCheckoutTelemetry-C_ms-dTB.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.33 kB
assets/workspaceCheckoutTelemetry-LDDCsB14.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.33 kB
assets/GlobalToast-BCpqrdh1.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/GlobalToast-XCe22CN6.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.11 kB
assets/Media3DTop-C6sxIv0T.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/Media3DTop-DqHxL8Gb.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/load3dAdvanced-CcPl0JV_.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -953 B
assets/load3dAdvanced-CvnkN6Gg.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +950 B
assets/SubscribeToRun-BmTbi9b4.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -899 B
assets/SubscribeToRun-CcMFEBB-.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +928 B
assets/MediaAudioTop-BYxnQHb-.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +806 B 🔴 +670 B
assets/MediaAudioTop-M_mmsBn9.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -805 B 🟢 -667 B
assets/cloudSessionCookie-DgBfnJCN.js (removed) 933 B 🟢 -933 B 🟢 -434 B 🟢 -376 B
assets/cloudSessionCookie-O88oAbcC.js (new) 933 B 🔴 +933 B 🔴 +434 B 🔴 +379 B
assets/cloudBadges-B5KcUySW.js (new) 922 B 🔴 +922 B 🔴 +514 B 🔴 +464 B
assets/cloudBadges-DJkWgP2u.js (removed) 922 B 🟢 -922 B 🟢 -515 B 🟢 -440 B
assets/Load3DAdvanced-CMzm_sf8.js (new) 761 B 🔴 +761 B 🔴 +423 B 🔴 +358 B
assets/Load3DAdvanced-CpFmsBvI.js (removed) 761 B 🟢 -761 B 🟢 -424 B 🟢 -359 B
assets/nightlyBadges-CFs634pp.js (removed) 411 B 🟢 -411 B 🟢 -274 B 🟢 -273 B
assets/nightlyBadges-KKnzwogI.js (new) 411 B 🔴 +411 B 🔴 +273 B 🔴 +268 B
assets/Load3dViewerContent-DdR0dMEO.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +109 B
assets/Load3dViewerContent-DFVhBja5.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -96 B
assets/missingModelMetadata-CmpxJBiP.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -105 B
assets/missingModelMetadata-WvbBZ2Dv.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +103 B
assets/Load3DAdvanced-Bym4NPd7.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +97 B
assets/Load3DAdvanced-Cfkc-ToS.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -88 B
assets/WidgetLegacy-k4c7QbpV.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +102 B
assets/WidgetLegacy-uZPHYPrj.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -103 B
assets/workflowDraftStoreV2-Dh-pHubc.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +109 B
assets/workflowDraftStoreV2-DOwRw48I.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -116 B
assets/Load3D-ktcbRmW8.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +78 B
assets/Load3D-X-rQ5Jgz.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -79 B
assets/changeTracker-DD5-49Rp.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -84 B
assets/changeTracker-Dlp2Fuy8.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +91 B

Status: 68 added / 68 removed / 217 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.9 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.1 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.6 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.9 MB heap
large-graph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.4 MB heap
large-graph-pan: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.1 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.8 MB heap
minimap-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.6 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.2 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.9 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.1 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 142ms TBT · 93.2 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.2 MB heap
vue-large-graph-idle: · 53.7 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 161.3 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 220ms TBT · 160.0 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.5 MB heap

⚠️ 5 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 454ms 565ms +24% ⚠️ z=5.5
large-graph-idle: task duration 668ms 704ms +5% ⚠️ z=3.0
large-graph-pan: task duration 1303ms 1282ms -2% ⚠️ z=4.7
minimap-idle: task duration 659ms 727ms +10% ⚠️ z=4.2
subgraph-idle: task duration 463ms 496ms +7% ⚠️ z=4.0
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 8ms 8ms -6% z=-3.7
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 8 -11% z=-5.6
canvas-idle: task duration 454ms 565ms +24% ⚠️ z=5.5
canvas-idle: script duration 15ms 20ms +30% z=-2.5
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.9 MB 66.9 MB -0%
canvas-idle: DOM nodes 18 16 -11% z=-5.2
canvas-idle: event listeners 4 5 +25% z=-1.4
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 4ms 4ms -2% z=0.4
canvas-mouse-sweep: style recalc duration 38ms 41ms +7% z=-0.6
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 74 76 +2% z=-1.4
canvas-mouse-sweep: task duration 862ms 897ms +4% z=0.6
canvas-mouse-sweep: script duration 120ms 127ms +6% z=-1.3
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.4 MB 55.1 MB +12%
canvas-mouse-sweep: DOM nodes -278 -112 -60% z=-67.4
canvas-mouse-sweep: event listeners -151 -75 -51% z=-19.9
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 -0% z=-1.6
canvas-zoom-sweep: style recalc duration 16ms 16ms -2% z=-2.2
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +2% z=0.5
canvas-zoom-sweep: task duration 366ms 373ms +2% z=2.0
canvas-zoom-sweep: script duration 18ms 19ms +2% z=-2.8
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 69.9 MB 69.6 MB -0%
canvas-zoom-sweep: DOM nodes 77 77 -1% z=-3.5
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 6ms 8ms +37% z=-1.9
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 9 12 +28% z=-3.2
dom-widget-clipping: task duration 364ms 383ms +5% z=1.1
dom-widget-clipping: script duration 58ms 60ms +4% z=-2.4
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 50.7 MB 50.9 MB +0%
dom-widget-clipping: DOM nodes 14 19 +36% z=-2.2
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 +1%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 8ms +1% z=-4.0
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 8 8 +0% z=-11.5
large-graph-idle: task duration 668ms 704ms +5% ⚠️ z=3.0
large-graph-idle: script duration 104ms 110ms +5% z=0.7
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 64.2 MB 64.4 MB +0%
large-graph-idle: DOM nodes -284 -284 -0% z=-341.0
large-graph-idle: event listeners -147 -147 +0% z=-28.4
large-graph-pan: avg frame time 17ms 17ms +0% z=1.3
large-graph-pan: p95 frame time 17ms 17ms +1%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 15ms 13ms -12% z=-5.5
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 68 -1% z=-2.4
large-graph-pan: task duration 1303ms 1282ms -2% ⚠️ z=4.7
large-graph-pan: script duration 449ms 431ms -4% z=1.2
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.8 MB 62.1 MB -1%
large-graph-pan: DOM nodes -284 -286 +1% z=-184.9
large-graph-pan: event listeners -149 -149 +0% z=-185.9
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +1%
large-graph-zoom: layout duration 7ms 7ms -1%
large-graph-zoom: style recalc duration 14ms 14ms -2%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 65 -2%
large-graph-zoom: task duration 1504ms 1526ms +1%
large-graph-zoom: script duration 536ms 530ms -1%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 57.2 MB 57.8 MB +1%
large-graph-zoom: DOM nodes -288 -290 +1%
large-graph-zoom: event listeners -153 -153 +0%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 7ms +5% z=-2.7
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 8 +0% z=-2.3
minimap-idle: task duration 659ms 727ms +10% ⚠️ z=4.2
minimap-idle: script duration 99ms 117ms +18% z=1.9
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 63.8 MB 64.6 MB +1%
minimap-idle: DOM nodes -284 -283 -0% z=-220.9
minimap-idle: event listeners -151 -149 -1% z=-232.6
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 9ms -14% z=-3.5
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 45 -6% z=-5.0
subgraph-dom-widget-clipping: task duration 396ms 400ms +1% z=1.2
subgraph-dom-widget-clipping: script duration 116ms 122ms +5% z=-1.0
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 51.0 MB 51.2 MB +0%
subgraph-dom-widget-clipping: DOM nodes 22 16 -27% z=-5.5
subgraph-dom-widget-clipping: event listeners 6 8 +33% z=-1.4
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 9ms +15% z=-1.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 10 +11% z=-1.4
subgraph-idle: task duration 463ms 496ms +7% ⚠️ z=4.0
subgraph-idle: script duration 12ms 16ms +29% z=-1.6
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 67.1 MB 66.9 MB -0%
subgraph-idle: DOM nodes 18 20 +11% z=-1.2
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 +1%
subgraph-mouse-sweep: layout duration 4ms 4ms +7% z=-0.6
subgraph-mouse-sweep: style recalc duration 36ms 36ms -0% z=-1.9
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 76 +0% z=-2.1
subgraph-mouse-sweep: task duration 810ms 780ms -4% z=0.2
subgraph-mouse-sweep: script duration 92ms 95ms +2% z=-1.0
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 46.4 MB 58.1 MB +25%
subgraph-mouse-sweep: DOM nodes 1 64 +6250% z=-1.5
subgraph-mouse-sweep: event listeners -153 4 -103% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms -0%
subgraph-transition-enter: p95 frame time 17ms 17ms -1%
subgraph-transition-enter: layout duration 13ms 12ms -6%
subgraph-transition-enter: style recalc duration 31ms 29ms -4%
subgraph-transition-enter: layout count 14 14 +0%
subgraph-transition-enter: style recalc count 18 18 +0%
subgraph-transition-enter: task duration 907ms 935ms +3%
subgraph-transition-enter: script duration 32ms 35ms +9%
subgraph-transition-enter: TBT 139ms 142ms +2%
subgraph-transition-enter: heap used 72.8 MB 93.2 MB +28%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2375 2375 +0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms -0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 36ms 37ms +1%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 -0%
viewport-pan-sweep: task duration 4467ms 4478ms +0%
viewport-pan-sweep: script duration 1389ms 1380ms -1%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 57.1 MB 68.2 MB +19%
viewport-pan-sweep: DOM nodes -283 -282 -0%
viewport-pan-sweep: event listeners -163 -132 -19%
vue-large-graph-idle: avg frame time 18ms 19ms +5%
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 16903ms 16929ms +0%
vue-large-graph-idle: script duration 578ms 566ms -2%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 159.4 MB 161.3 MB +1%
vue-large-graph-idle: DOM nodes -8312 -8327 +0%
vue-large-graph-idle: event listeners -16387 -16398 +0%
vue-large-graph-pan: avg frame time 18ms 18ms +0%
vue-large-graph-pan: p95 frame time 17ms 17ms -0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 16ms 17ms +9%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 139 144 +3%
vue-large-graph-pan: task duration 20354ms 20723ms +2%
vue-large-graph-pan: script duration 884ms 935ms +6%
vue-large-graph-pan: TBT 117ms 220ms +88%
vue-large-graph-pan: heap used 159.8 MB 160.0 MB +0%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16383 -16382 -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 +39% z=-3.7
workflow-execution: style recalc duration 21ms 21ms +1% z=-1.5
workflow-execution: layout count 3 3 -17% z=-4.5
workflow-execution: style recalc count 13 17 +27% z=-0.6
workflow-execution: task duration 109ms 119ms +10% z=-0.4
workflow-execution: script duration 9ms 12ms +28% z=-5.9
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 65.3 MB 65.5 MB +0%
workflow-execution: DOM nodes 123 145 +17% z=-2.3
workflow-execution: event listeners 97 98 +1% z=10.6
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-08-11T21:51:00.790Z",
  "gitSha": "22959fa15a7e36aa105112bfa1583d0d2d833b7f",
  "branch": "austin/asset-schema-update",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2155.187999999981,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 5.784000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 640.1899999999999,
      "heapDeltaBytes": 5817192,
      "heapUsedBytes": 70162300,
      "domNodes": 14,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 20.462999999999997,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2037.5779999999963,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.279,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 488.9440000000001,
      "heapDeltaBytes": 5825572,
      "heapUsedBytes": 70202672,
      "domNodes": 18,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 19.055999999999997,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1820.9020000000464,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 40.157,
      "layouts": 12,
      "layoutDurationMs": 3.5610000000000004,
      "taskDurationMs": 869.922,
      "heapDeltaBytes": 141796,
      "heapUsedBytes": 64233384,
      "domNodes": 57,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 125.20399999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1889.6250000000236,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 41.579,
      "layouts": 12,
      "layoutDurationMs": 3.804,
      "taskDurationMs": 924.4610000000001,
      "heapDeltaBytes": -13117816,
      "heapUsedBytes": 51285608,
      "domNodes": -281,
      "jsHeapTotalBytes": 23830528,
      "scriptDurationMs": 129.172,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1723.1409999999983,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 14.896999999999998,
      "layouts": 6,
      "layoutDurationMs": 0.518,
      "taskDurationMs": 365.07800000000003,
      "heapDeltaBytes": 8794920,
      "heapUsedBytes": 73132056,
      "domNodes": 77,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 18.302000000000003,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1742.6509999999098,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.626,
      "layouts": 6,
      "layoutDurationMs": 0.619,
      "taskDurationMs": 380.708,
      "heapDeltaBytes": 8768120,
      "heapUsedBytes": 72922564,
      "domNodes": 76,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 19.245,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 575.1710000000116,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.9719999999999995,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 376.98400000000004,
      "heapDeltaBytes": -11047064,
      "heapUsedBytes": 53201328,
      "domNodes": 18,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 59.293,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 592.7780000000666,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 8.690999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 389.48499999999996,
      "heapDeltaBytes": -10801728,
      "heapUsedBytes": 53490428,
      "domNodes": 20,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 60.7,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2058.109999999999,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.7390000000000025,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 677.838,
      "heapDeltaBytes": 7333300,
      "heapUsedBytes": 67292968,
      "domNodes": -283,
      "jsHeapTotalBytes": 4296704,
      "scriptDurationMs": 104.23199999999999,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2025.541999999973,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.301,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 730.0659999999999,
      "heapDeltaBytes": 7816528,
      "heapUsedBytes": 67797144,
      "domNodes": -284,
      "jsHeapTotalBytes": 2985984,
      "scriptDurationMs": 114.913,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2134.469000000024,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 12.410999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1244.01,
      "heapDeltaBytes": 4661248,
      "heapUsedBytes": 65628064,
      "domNodes": -286,
      "jsHeapTotalBytes": 3702784,
      "scriptDurationMs": 421.983,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2199.0059999999403,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 13.356999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1320.4119999999998,
      "heapDeltaBytes": 3372640,
      "heapUsedBytes": 64619816,
      "domNodes": -286,
      "jsHeapTotalBytes": 3178496,
      "scriptDurationMs": 440.822,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3226.2119999999754,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 13.982999999999999,
      "layouts": 60,
      "layoutDurationMs": 7.179999999999999,
      "taskDurationMs": 1496.075,
      "heapDeltaBytes": -2190248,
      "heapUsedBytes": 59987840,
      "domNodes": -289,
      "jsHeapTotalBytes": 6393856,
      "scriptDurationMs": 523.132,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3226.594999999975,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 14.126999999999997,
      "layouts": 60,
      "layoutDurationMs": 7.047999999999998,
      "taskDurationMs": 1555.5829999999999,
      "heapDeltaBytes": -1083112,
      "heapUsedBytes": 61162088,
      "domNodes": -290,
      "jsHeapTotalBytes": 6918144,
      "scriptDurationMs": 535.965,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2042.822000000001,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 6.909999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 711.7689999999999,
      "heapDeltaBytes": 7211920,
      "heapUsedBytes": 67801332,
      "domNodes": -283,
      "jsHeapTotalBytes": 3248128,
      "scriptDurationMs": 114.60400000000001,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2037.3439999999619,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.702000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 743.2209999999999,
      "heapDeltaBytes": 6819776,
      "heapUsedBytes": 67573968,
      "domNodes": -283,
      "jsHeapTotalBytes": 3772416,
      "scriptDurationMs": 119.783,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 574.307000000033,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.36,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 390.228,
      "heapDeltaBytes": -10944300,
      "heapUsedBytes": 53427268,
      "domNodes": 16,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 117.32700000000001,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 585.4160000000093,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.468999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 409.97499999999997,
      "heapDeltaBytes": -10633844,
      "heapUsedBytes": 53853744,
      "domNodes": 16,
      "jsHeapTotalBytes": 25952256,
      "scriptDurationMs": 126.26599999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1995.6470000000195,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.704,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 474.976,
      "heapDeltaBytes": 5794004,
      "heapUsedBytes": 70041060,
      "domNodes": 20,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 14.202000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2007.0690000000013,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.294999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 517.145,
      "heapDeltaBytes": 5927128,
      "heapUsedBytes": 70320852,
      "domNodes": 20,
      "jsHeapTotalBytes": 24379392,
      "scriptDurationMs": 17.83,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1693.3839999999805,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 34.785000000000004,
      "layouts": 16,
      "layoutDurationMs": 4.3,
      "taskDurationMs": 766.141,
      "heapDeltaBytes": -3487152,
      "heapUsedBytes": 60803252,
      "domNodes": 64,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 90.96300000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1694.7790000000396,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 37.494,
      "layouts": 16,
      "layoutDurationMs": 4.691,
      "taskDurationMs": 794.445,
      "heapDeltaBytes": -3253328,
      "heapUsedBytes": 61049036,
      "domNodes": 63,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 98.051,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1389.1890000000444,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 29.193000000000012,
      "layouts": 14,
      "layoutDurationMs": 12.079000000000002,
      "taskDurationMs": 934.647,
      "heapDeltaBytes": 30968728,
      "heapUsedBytes": 97777176,
      "domNodes": 13673,
      "jsHeapTotalBytes": 15728640,
      "scriptDurationMs": 35.117,
      "eventListeners": 2375,
      "totalBlockingTimeMs": 142,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8219.768999999986,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 35.814,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4357.099,
      "heapDeltaBytes": 10910808,
      "heapUsedBytes": 70622808,
      "domNodes": -283,
      "jsHeapTotalBytes": 5275648,
      "scriptDurationMs": 1347.308,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8433.109000000059,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 37.766,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4599.349,
      "heapDeltaBytes": 12835112,
      "heapUsedBytes": 72361764,
      "domNodes": -281,
      "jsHeapTotalBytes": 5537792,
      "scriptDurationMs": 1413.304,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 16848.825000000033,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16826.844999999998,
      "heapDeltaBytes": -31446748,
      "heapUsedBytes": 171512968,
      "domNodes": -8312,
      "jsHeapTotalBytes": -4395008,
      "scriptDurationMs": 557.9490000000001,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.33666666666662,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17063.37700000006,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17032.054000000004,
      "heapDeltaBytes": -40562544,
      "heapUsedBytes": 166701992,
      "domNodes": -8342,
      "jsHeapTotalBytes": -8069120,
      "scriptDurationMs": 573.8839999999999,
      "eventListeners": -16409,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.890000000000025,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20552.569000000007,
      "styleRecalcs": 142,
      "styleRecalcDurationMs": 16.554999999999986,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20520.677999999996,
      "heapDeltaBytes": -36683008,
      "heapUsedBytes": 168755308,
      "domNodes": -8312,
      "jsHeapTotalBytes": -9904128,
      "scriptDurationMs": 905.2780000000001,
      "eventListeners": -16381,
      "totalBlockingTimeMs": 249,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20954.93099999999,
      "styleRecalcs": 145,
      "styleRecalcDurationMs": 17.80000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20925.273,
      "heapDeltaBytes": -49220888,
      "heapUsedBytes": 166820328,
      "domNodes": -8312,
      "jsHeapTotalBytes": -12263424,
      "scriptDurationMs": 965.3960000000002,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 190,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 483.9670000000069,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 22,
      "layouts": 3,
      "layoutDurationMs": 1.145,
      "taskDurationMs": 123.04799999999999,
      "heapDeltaBytes": 5303208,
      "heapUsedBytes": 68801060,
      "domNodes": 148,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 12.065999999999999,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 468.11700000000656,
      "styleRecalcs": 16,
      "styleRecalcDurationMs": 19.762,
      "layouts": 2,
      "layoutDurationMs": 0.874,
      "taskDurationMs": 115.07199999999999,
      "heapDeltaBytes": 5165140,
      "heapUsedBytes": 68578224,
      "domNodes": 141,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 11.272,
      "eventListeners": 97,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    }
  ]
}

@codecov

codecov Bot commented Aug 6, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 40.00000% with 3 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
.../platform/assets/composables/media/assetMappers.ts 25.00% 3 Missing ⚠️
@@            Coverage Diff             @@
##             main   #14858      +/-   ##
==========================================
+ Coverage   80.85%   81.36%   +0.51%     
==========================================
  Files        1873     1873              
  Lines      121849   106431   -15418     
  Branches    37437    32698    -4739     
==========================================
- Hits        98515    86598   -11917     
+ Misses      22802    19478    -3324     
+ Partials      532      355     -177     
Flag Coverage Δ
unit 72.53% <40.00%> (+<0.01%) ⬆️

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

Files with missing lines Coverage Δ
src/platform/assets/components/MediaAssetCard.vue 93.89% <ø> (+1.63%) ⬆️
src/platform/assets/schemas/assetSchema.ts 100.00% <ø> (ø)
src/platform/assets/utils/outputAssetUtil.ts 98.88% <ø> (-0.22%) ⬇️
...platform/missingMedia/missingMediaAssetResolver.ts 95.86% <100.00%> (+0.03%) ⬆️
.../platform/assets/composables/media/assetMappers.ts 81.81% <25.00%> (+0.86%) ⬆️

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

mimeType: AssetMeta['mime_type'] = 'video/mp4'
): AssetMeta {
return {
return fromPartial<AssetMeta>({

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.

?

Suggested change
return fromPartial<AssetMeta>({
return fromPartial({

overrides: Partial<AssetDisplayItem> = {}
): AssetDisplayItem {
const base = {
return fromPartial<AssetDisplayItem>({

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.

Suggested change
return fromPartial<AssetDisplayItem>({
return fromPartial({

size: 0,
created_at: new Date().toISOString(),
created_at,
updated_at: created_at,

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.

🤨


function createMockAsset(overrides: Partial<AssetItem> = {}): AssetItem {
return {
return fromPartial<AssetItem>({

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.

Suggested change
return fromPartial<AssetItem>({
return fromPartial({

Comment on lines +31 to +32
return Array.from({ length: count }, (_, i) =>
fromPartial<AssetItem>({

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.

Suggested change
return Array.from({ length: count }, (_, i) =>
fromPartial<AssetItem>({
return Array.from({ length: count }, (_, i): AssetItem =>
fromPartial({

Comment on lines +37 to +38
ids.map((id) =>
fromPartial<AssetItem>({

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.

Suggested change
ids.map((id) =>
fromPartial<AssetItem>({
ids.map((id): AssetItem =>
fromPartial({

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Can we replace this with a reference to the OpenAPI generated types now?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Took lots of massaging and didn't quite make it all the way there, but it's still better

DrJKL
DrJKL previously approved these changes Aug 7, 2026
@DrJKL DrJKL assigned AustinMroz and unassigned DrJKL Aug 7, 2026
@AustinMroz
AustinMroz dismissed stale reviews from DrJKL and coderabbitai[bot] via 585751e August 7, 2026 04:33
@dosubot dosubot Bot added size:L This PR changes 100-499 lines, ignoring generated files. and removed size:M This PR changes 30-99 lines, ignoring generated files. labels Aug 7, 2026

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

Caution

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

⚠️ Outside diff range comments (1)
src/platform/missingMedia/missingMediaAssetResolver.test.ts (1)

695-695: 📐 Maintainability & Code Quality | 🟠 Major | ⚡ Quick win

Restore the removed missing-hash regression test.

Line [695] removes coverage for name matching when hash is null. Keep an equivalent behavior test. If null is no longer valid, use an omitted or undefined hash instead of deleting the test.

As per coding guidelines, do not delete or disable tests. As per path instructions, retain behavioral coverage for asset matching.

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

In `@src/platform/missingMedia/missingMediaAssetResolver.test.ts` at line 695,
Restore the missing-hash regression test in the missing-media asset resolver
suite, preserving coverage for name matching when the hash is absent. Use null
if still supported; otherwise represent the missing hash with an omitted or
undefined value, and keep the test active rather than deleting or disabling it.

Sources: Coding guidelines, Path instructions

🤖 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.

Outside diff comments:
In `@src/platform/missingMedia/missingMediaAssetResolver.test.ts`:
- Line 695: Restore the missing-hash regression test in the missing-media asset
resolver suite, preserving coverage for name matching when the hash is absent.
Use null if still supported; otherwise represent the missing hash with an
omitted or undefined value, and keep the test active rather than deleting or
disabling it.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: f3317225-9c07-4f24-b196-d4f8b70f5d42

📥 Commits

Reviewing files that changed from the base of the PR and between a0d38e6 and 585751e.

📒 Files selected for processing (12)
  • src/platform/assets/components/AssetCard.test.ts
  • src/platform/assets/components/MediaVideoTop.test.ts
  • src/platform/assets/composables/media/assetMappers.ts
  • src/platform/assets/composables/useAssetBrowserDialog.test.ts
  • src/platform/assets/composables/useAssetSelection.test.ts
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/composables/useOutputStacks.property.test.ts
  • src/platform/assets/schemas/assetSchema.ts
  • src/platform/assets/utils/assetMetadataUtils.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.ts
  • src/platform/missingMedia/missingMediaScan.test.ts
💤 Files with no reviewable changes (3)
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/utils/assetMetadataUtils.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.ts

coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 7, 2026

@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 `@browser_tests/fixtures/assetApiFixture.ts`:
- Around line 47-55: Update the assetApi fixture’s assetApi setup to configure
optional operators when provided, then call assetApi.mock() unconditionally so
default and folders-only configurations install the empty mock; add coverage for
both configurations to prevent regression.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: b53bb907-9467-42ed-934a-92355bc5b8e6

📥 Commits

Reviewing files that changed from the base of the PR and between 585751e and dac4dee.

📒 Files selected for processing (5)
  • browser_tests/fixtures/assetApiFixture.ts
  • browser_tests/fixtures/helpers/AssetHelper.ts
  • browser_tests/tests/sidebar/modelLibraryAssetMode.spec.ts
  • src/platform/assets/schemas/assetSchema.ts
  • src/platform/assets/utils/createAssetWidget.test.ts
💤 Files with no reviewable changes (1)
  • src/platform/assets/utils/createAssetWidget.test.ts

Comment thread browser_tests/fixtures/assetApiFixture.ts
coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 8, 2026
@AustinMroz
AustinMroz force-pushed the austin/asset-schema-update branch from dac4dee to 6a01ef2 Compare August 11, 2026 03:48
@coderabbitai

coderabbitai Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@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: 3

🤖 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/components/sidebar/tabs/AssetsSidebarTab.test.ts`:
- Around line 9-19: Update the folderAsset fixture to retain compile-time
validation against AssetItem, using a hoist-safe fromPartial<AssetItem>
construction or an equivalent satisfies AssetItem check while preserving its
current values.

In `@src/platform/assets/schemas/assetSchema.ts`:
- Line 11: Update the size field in the asset schema to preserve signed int64
precision: keep it as bigint, or validate that values are within
Number.MAX_SAFE_INTEGER bounds before converting to number. Add boundary tests
covering safe and unsafe int64 values, including both signed limits where
applicable.
- Around line 7-10: Update the size parsing in zIngestAsset so int64 values
above Number.MAX_SAFE_INTEGER are rejected before Number conversion or preserved
without precision loss. Add parser tests covering default tags, required
timestamps, optional thumbnail_url, and int64 boundary values.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: ebff8e0c-8bda-4b5f-a3b8-1dda4ffe7e07

📥 Commits

Reviewing files that changed from the base of the PR and between 47f0e7e and 6a01ef2.

📒 Files selected for processing (43)
  • browser_tests/fixtures/assetApiFixture.ts
  • browser_tests/fixtures/helpers/AssetHelper.ts
  • browser_tests/tests/sidebar/modelLibraryAssetMode.spec.ts
  • src/components/sidebar/tabs/AssetsSidebarListView.stories.ts
  • src/components/sidebar/tabs/AssetsSidebarListView.test.ts
  • src/components/sidebar/tabs/AssetsSidebarTab.test.ts
  • src/composables/node/startModelNodeDragFromAsset.test.ts
  • src/platform/assets/components/AssetCard.test.ts
  • src/platform/assets/components/MediaAssetCard.stories.ts
  • src/platform/assets/components/MediaAssetCard.test.ts
  • src/platform/assets/components/MediaAssetCard.vue
  • src/platform/assets/components/MediaAssetContextMenu.test.ts
  • src/platform/assets/components/MediaVideoTop.test.ts
  • src/platform/assets/composables/media/assetMappers.ts
  • src/platform/assets/composables/useAssetBrowserDialog.test.ts
  • src/platform/assets/composables/useAssetGridSelection.test.ts
  • src/platform/assets/composables/useAssetSelection.property.test.ts
  • src/platform/assets/composables/useAssetSelection.test.ts
  • src/platform/assets/composables/useMediaAssetActions.test.ts
  • src/platform/assets/composables/useMediaAssetFiltering.test.ts
  • src/platform/assets/composables/useMediaAssetGalleryStore.test.ts
  • src/platform/assets/composables/useOutputStacks.property.test.ts
  • src/platform/assets/composables/useOutputStacks.test.ts
  • src/platform/assets/composables/useUploadModelWizard.test.ts
  • src/platform/assets/schemas/assetSchema.ts
  • src/platform/assets/services/assetService.test.ts
  • src/platform/assets/utils/assetFilterUtils.property.test.ts
  • src/platform/assets/utils/assetFilterUtils.test.ts
  • src/platform/assets/utils/assetMetadataUtils.test.ts
  • src/platform/assets/utils/createAssetWidget.test.ts
  • src/platform/assets/utils/outputAssetUtil.ts
  • src/platform/assets/utils/resolveModelNodeFromAsset.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.ts
  • src/platform/missingMedia/missingMediaScan.test.ts
  • src/platform/workflow/utils/workflowExtractionUtil.test.ts
  • src/renderer/extensions/linearMode/LinearPreview.test.ts
  • src/renderer/extensions/linearMode/OutputHistory.test.ts
  • src/renderer/extensions/linearMode/useOutputHistory.test.ts
  • src/renderer/extensions/vueNodes/widgets/components/WidgetSelectDropdown.test.ts
  • src/renderer/extensions/vueNodes/widgets/composables/useAssetWidgetData.test.ts
  • src/renderer/extensions/vueNodes/widgets/composables/useWidgetSelectItems.test.ts
  • src/stores/assetsStore.test.ts

Comment thread src/components/sidebar/tabs/AssetsSidebarTab.test.ts
Comment thread src/platform/assets/schemas/assetSchema.ts
Comment thread src/platform/assets/schemas/assetSchema.ts
coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 11, 2026

@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/assets/composables/useMediaAssetActions.test.ts`:
- Around line 232-240: Update the regression test fixture or case using
createMockAsset to pass hash: null rather than hash: undefined, preserving
coverage of useMediaAssetActions falling back to asset.name for nullable API
hashes.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 0d8e043e-0399-4efc-b520-e7d22f69ec5b

📥 Commits

Reviewing files that changed from the base of the PR and between 6a01ef2 and dd1cbb4.

📒 Files selected for processing (1)
  • src/platform/assets/composables/useMediaAssetActions.test.ts

Comment thread src/platform/assets/composables/useMediaAssetActions.test.ts
Comment on lines +38 to +39
operators?: AssetOperator[]
folders?: ModelFolderInfo[]

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.

Suggested change
operators?: AssetOperator[]
folders?: ModelFolderInfo[]
folders?: ModelFolderInfo[]
operators?: AssetOperator[]

@DrJKL
DrJKL enabled auto-merge August 11, 2026 21:38
@DrJKL
DrJKL added this pull request to the merge queue Aug 11, 2026
Merged via the queue into main with commit cb2b7c6 Aug 11, 2026
61 checks passed
@DrJKL
DrJKL deleted the austin/asset-schema-update branch August 11, 2026 22:08
pull Bot pushed a commit to Penguinjanator/ComfyUI_frontend that referenced this pull request Aug 21, 2026
Comfy-Org#14858 more closely aligned the asset schema to match the spec defined
by cloud generated types. Since cloud doesn't satisfy it's own schema,
this would result in assets being skipped on cloud. The schema is
loosened for these inaccuracies. A test was added to verify that these
specific inaccuracies be accepted.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants