Skip to content

fix: handle changes to supportsModelTypeTags - #14160

Merged
AustinMroz merged 9 commits into
mainfrom
synap5e/feat/model-type-flag-features-endpoint
Aug 4, 2026
Merged

fix: handle changes to supportsModelTypeTags#14160
AustinMroz merged 9 commits into
mainfrom
synap5e/feat/model-type-flag-features-endpoint

Conversation

@synap5e

@synap5e synap5e commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Requested by Simon P · Slack thread

Scope narrowed following review from Simon P: this PR now ships only the approved fix — hardening refreshRemoteConfig's error handling and sourcing supportsModelTypeTags from it directly. The OSS reconnect/visibility-trigger scope from the original proposal is deliberately cut (see below).

What changed

refreshRemoteConfig used to wipe remoteConfig/window.__CONFIG__ to {} on any fetch failure, including a transient network blip or the bootstrap fetch's own abort-on-timeout. Every flag sourced from remoteConfig would flap to its default for the rest of that tick, and anything that reads window.__CONFIG__ directly (dialogService.ts, useSubscription.ts, useSettingUI.ts) would momentarily see no config at all.

  • Before: fetch throws (network error, AbortError) → remoteConfig.value = {} and window.__CONFIG__ = {} → every remote-config-backed flag drops to its default until the next successful poll.
  • After: fetch throws → log and mark remoteConfigState = 'error', but leave remoteConfig.value and window.__CONFIG__ at their last-known-good value.
  • Unchanged: a 401/403 response still clears both — that's a real auth-state transition, not a blip, and downstream flags should reflect the logged-out state immediately.

Because refreshRemoteConfig no longer flaps on transient errors, supportsModelTypeTags can now be sourced the same way as every other server flag:

get supportsModelTypeTags() {
  return resolveFlag(
    ServerFeatureFlag.SUPPORTS_MODEL_TYPE_TAGS,
    remoteConfig.value.supports_model_type_tags,
    false
  )
}

useModelTypeTagsRefresh.ts (bespoke fetch + zod schema + single-flight + timeout + its own reconnect/visibility/interval triggers) and its test file are deleted outright — nothing replaces them. modelStore.ts's existing watcher on flags.supportsModelTypeTags is untouched; it still reloads the model library when the flag flips, just fed by remoteConfig now instead of the deleted composable's ref.

The cloud-only 600s poller in cloudRemoteConfig.ts (gated behind isCloud at the extensions/core/index.ts import site) is unchanged — still cloud-only, no reconnect/visibility triggers added anywhere.

Why the OSS/reconnect scope was cut

The original proposal additionally added reconnect- and visibility-based refresh triggers for OSS/non-cloud builds. That's dropped here because the asset-API model listing this flag governs isn't reachable off-cloud today:

  • Comfy.Assets.UseAssetAPI defaults to false off-cloud and is marked experimental: true (src/platform/settings/constants/coreSettings.ts).
  • Comfy.ModelLibrary.UseAssetBrowser likewise defaults to false off-cloud and is experimental: true.
  • The asset-browser code paths that actually consume the tagging flag are hard-gated on cloud, e.g. assetService.ts's usesAssetApi() (if (!isCloud) return false) and useMediaAssetActions.ts (if (!isCloud) { ... }).

An OSS user has to opt into an experimental, off-by-default setting before this flag matters at all, and even then the asset-browser surface stays inert off-cloud. Adding reconnect/visibility plumbing for a path that's unreachable in practice isn't worth the extra surface area; it can be revisited if/when the asset API ships for OSS. Consolidating the two /features pollers was already tracked in FE-1439 — this PR is that consolidation, minus the OSS trigger scope.

Test plan

  • refreshRemoteConfig.test.ts: the two error-handling tests are rewritten (retains the last-known-good config when the request aborts, retains the last-known-good config on a transient fetch error) to assert retention instead of clearing; the 401/403-clears and 500-preserves tests are unchanged.
  • useFeatureFlags.test.ts: supportsModelTypeTags tests rewritten to the same shape as other resolveFlag-backed flags (remote-config value wins, falls back to the server feature, defaults false).
  • modelStore.test.ts: the capability-change tests now drive remoteConfig.value instead of the deleted composable's ref; same reload-on-flip/no-reload-on-legacy-path assertions.
  • pnpm typecheck, pnpm lint, and the targeted suite (refreshRemoteConfig.test.ts, useFeatureFlags.test.ts, modelStore.test.ts) all pass — 88/88 tests.

Net effect

Deletes useModelTypeTagsRefresh.ts and its test file and simplifies supportsModelTypeTags to a one-line resolveFlag call: 9 files changed, 29 insertions(+), 410 deletions(-).


Generated by Claude Code

@coderabbitai

coderabbitai Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The PR adds HTTP refresh handling for supports_model_type_tags, gives the feature flag HTTP-first resolution with server fallback, and reloads asset-backed models when the capability changes. GraphView starts refresh lifecycle events, with tests covering refresh, precedence, concurrency, and store synchronization.

Changes

Model type capability

Layer / File(s) Summary
HTTP capability refresh and lifecycle wiring
src/platform/assets/composables/useModelTypeTagsRefresh.ts, src/platform/assets/composables/useModelTypeTagsRefresh.test.ts, src/views/GraphView.vue
Fetches /features without caching, tracks valid boolean values, preserves values on failures, coalesces concurrent requests, and refreshes on reconnect, visibility, and polling events.
HTTP-first feature flag resolution
src/composables/useFeatureFlags.ts, src/composables/useFeatureFlags.test.ts
Uses the HTTP capability when available and falls back to api.getServerFeature; tests verify precedence, defaults, overrides, and unrelated flags.
Model library synchronization
src/stores/modelStore.ts, src/stores/modelStore.test.ts
Watches the resolved capability and reloads asset-backed models on changes, while leaving the legacy listing path unchanged.

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

Possibly related PRs

Suggested labels: size:M

Suggested reviewers: dante01yoon

Sequence Diagram(s)

sequenceDiagram
  participant GraphView
  participant FeaturesAPI
  participant useFeatureFlags
  participant modelStore
  GraphView->>FeaturesAPI: fetch /features
  FeaturesAPI-->>GraphView: supports_model_type_tags
  GraphView->>useFeatureFlags: update HTTP capability
  useFeatureFlags-->>modelStore: resolve supportsModelTypeTags
  modelStore->>modelStore: reloadModels when capability changes
Loading

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 is largely inconsistent with the changeset and omits the required template sections, including an accurate summary and review focus. Rewrite the description to match the HTTP refresh, fallback resolution, overrides, reload behavior, and tests shown in the changeset.
End-To-End Regression Coverage For Fixes ❓ Inconclusive PR file changes are clear, but the PR title and commit subjects aren’t provided here, so the bug-fix signal required by the check can’t be verified. Please provide the PR title and commit subjects (or the base...head metadata) so I can determine whether the bug-fix condition is met.
✅ Passed checks (4 passed)
Check name Status Explanation
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 No changed files touch src/lib/litegraph/, src/ecs/, or graph-entity paths, so ADR 0003/0008 checks are not applicable.
Title check ✅ Passed The title clearly describes the primary change: handling changes to the supportsModelTypeTags feature flag.
✨ 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 synap5e/feat/model-type-flag-features-endpoint

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

@github-actions

github-actions Bot commented Jul 27, 2026

Copy link
Copy Markdown

🎭 Playwright: ✅ 1788 passed, 0 failed · 1 flaky

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

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/04/2026, 09:58:52 PM UTC

Links

📦 Bundle: 8.25 MB gzip 🔴 +102 B

Details

Summary

  • Raw size: 34.7 MB baseline 34.7 MB — 🔴 +268 B
  • Gzip: 8.25 MB baseline 8.25 MB — 🔴 +102 B
  • Brotli: 5.71 MB baseline 5.71 MB — 🔴 +211 B
  • Bundles: 428 current • 428 baseline • 144 added / 144 removed

Category Glance
Data & Services 🔴 +232 B (3.47 MB) · Utilities & Hooks 🔴 +36 B (386 kB) · Vendor & Third-Party ⚪ 0 B (15.7 MB) · Other ⚪ 0 B (12.8 MB) · Graph Workspace ⚪ 0 B (1.35 MB) · Panels & Settings ⚪ 0 B (551 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-DHj_1Od3.js (removed) 3.64 kB 🟢 -3.64 kB 🟢 -1.82 kB 🟢 -1.57 kB
assets/index-Di3xRbbq.js (new) 3.64 kB 🔴 +3.64 kB 🔴 +1.82 kB 🔴 +1.58 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-GWnZITpj.js (new) 1.35 MB 🔴 +1.35 MB 🔴 +294 kB 🔴 +221 kB
assets/GraphView-pZn9hadu.js (removed) 1.35 MB 🟢 -1.35 MB 🟢 -294 kB 🟢 -221 kB

Status: 1 added / 1 removed / 1 unchanged

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-D7Z_NEej.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.22 kB 🟢 -5.5 kB
assets/CloudSurveyView-LEzSWS1e.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.22 kB 🔴 +5.5 kB
assets/CloudLayoutView-CgPZJQuT.js (removed) 9.6 kB 🟢 -9.6 kB 🟢 -2.34 kB 🟢 -2.02 kB
assets/CloudLayoutView-DSqi_NwD.js (new) 9.6 kB 🔴 +9.6 kB 🔴 +2.34 kB 🔴 +2.02 kB
assets/UserCheckView-CNudUf_E.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/UserCheckView-W1IsgQl8.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.9 kB
assets/CloudLoginView-BDXTViVu.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.55 kB 🟢 -2.26 kB
assets/CloudLoginView-ooTqstQm.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.56 kB 🔴 +2.26 kB
assets/useCloudAuthPage-C4kGBHxV.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.51 kB 🟢 -2.2 kB
assets/useCloudAuthPage-CWkfqBTQ.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.52 kB 🔴 +2.19 kB
assets/CloudSignupView-BMJ3DZ54.js (removed) 6.56 kB 🟢 -6.56 kB 🟢 -2.17 kB 🟢 -1.91 kB
assets/CloudSignupView-CH7knvK5.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +2.17 kB 🔴 +1.91 kB
assets/WidgetTextPreview-D6cSga1O.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.89 kB
assets/WidgetTextPreview-DOWwmq_h.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.88 kB
assets/CloudSubscriptionRedirectView-CtprK3Ik.js (removed) 6.01 kB 🟢 -6.01 kB 🟢 -2.24 kB 🟢 -1.94 kB
assets/CloudSubscriptionRedirectView-D5dehf1p.js (new) 6.01 kB 🔴 +6.01 kB 🔴 +2.24 kB 🔴 +1.94 kB
assets/UserSelectView-DmPpd13h.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.95 kB 🔴 +1.71 kB
assets/UserSelectView-wPQxFPe-.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.95 kB 🟢 -1.71 kB
assets/CloudForgotPasswordView-B-QI1Byk.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.72 kB 🔴 +1.49 kB
assets/CloudForgotPasswordView-DV8D1ogk.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudAuthTimeoutView-BZEcuZE9.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.33 kB
assets/CloudAuthTimeoutView-Cvsvm0jf.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.33 kB
assets/OAuthLayoutView-CM_92sMK.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +697 B 🔴 +596 B
assets/OAuthLayoutView-Dw9YMihT.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -697 B 🟢 -596 B
assets/WidgetTextPreview-B4nzGX5F.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -93 B
assets/WidgetTextPreview-CVaiJxGE.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +89 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CbmKNBw8.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.94 kB 🟢 -8.8 kB
assets/KeybindingPanel-UvShMXqC.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.94 kB 🔴 +8.81 kB
assets/SecretsPanel-cnZtdUF-.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.86 kB 🟢 -6.89 kB
assets/SecretsPanel-CtixEKKB.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.86 kB 🔴 +6.9 kB
assets/CreditsPanel-KKpg4LyW.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.62 kB 🔴 +4.07 kB
assets/CreditsPanel-VL_XfEAC.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.62 kB 🟢 -4.08 kB
assets/SubscriptionPanel-CSnYf2iF.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.65 kB 🔴 +3.22 kB
assets/SubscriptionPanel-xzHwq717.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.65 kB 🟢 -3.21 kB
assets/AboutPanel-CH2i3ERh.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.02 kB 🔴 +2.72 kB
assets/AboutPanel-Cq-LSlT9.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.02 kB 🟢 -2.72 kB
assets/ExtensionPanel-CE0hD3-U.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/ExtensionPanel-CPQG2XIX.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.23 kB
assets/ServerConfigPanel-C9Na0pJH.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.93 kB 🟢 -1.72 kB
assets/ServerConfigPanel-FG5V9eiv.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.93 kB 🔴 +1.72 kB
assets/UserPanel-Bbrw0jxR.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/UserPanel-xNzuiFvu.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/refreshRemoteConfig-C73CY-G3.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +1.25 kB 🔴 +1.1 kB
assets/refreshRemoteConfig-DHPSQr3t.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -1.25 kB 🟢 -1.1 kB
assets/cloudRemoteConfig-B4y6MBB4.js (new) 951 B 🔴 +951 B 🔴 +515 B 🔴 +418 B
assets/cloudRemoteConfig-PgTIPVeZ.js (removed) 951 B 🟢 -951 B 🟢 -515 B 🟢 -425 B
assets/refreshRemoteConfig-Buor9dSj.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +86 B
assets/refreshRemoteConfig-C5Od1idj.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -86 B

Status: 11 added / 11 removed / 15 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-CnmPUAWK.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +4.32 kB 🔴 +3.76 kB
assets/SignUpForm-DMqaFEwV.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -4.32 kB 🟢 -3.76 kB
assets/auth-BvcGb1bq.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.27 kB 🟢 -1.09 kB
assets/auth-DUxqMRqj.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.27 kB 🔴 +1.09 kB
assets/UpdatePasswordContent-3p-x9wXt.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -842 B 🟢 -732 B
assets/UpdatePasswordContent-CV-PMhV6.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +842 B 🔴 +733 B
assets/authStore-3pNaJiDG.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -104 B
assets/authStore-dmc5r4wr.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +105 B
assets/workspaceAuthStore-ChhIqMxh.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +108 B
assets/workspaceAuthStore-CsvSZ2Sm.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -101 B
assets/auth-CxNwcQQ_.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -79 B
assets/auth-DeVcMTKw.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +87 B

Status: 6 added / 6 removed / 4 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-D9j2dxhY.js (removed) 90 kB 🟢 -90 kB 🟢 -19.2 kB 🟢 -16.5 kB
assets/ComfyHubPublishDialog-DCFwkInQ.js (new) 90 kB 🔴 +90 kB 🔴 +19.2 kB 🔴 +16.5 kB
assets/useShareDialog-DJF-o3D2.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.69 kB 🔴 +5.03 kB
assets/useShareDialog-SJWNYnjj.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.03 kB
assets/feedbackDialog-nBBVfYbo.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.87 kB 🔴 +1.59 kB
assets/feedbackDialog-UVg4QSvM.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.87 kB 🟢 -1.59 kB
assets/useRangeEditor-BoK5FRo2.js (new) 3.23 kB 🔴 +3.23 kB 🔴 +1.13 kB 🔴 +1.02 kB
assets/useRangeEditor-DcP6l9hM.js (removed) 3.23 kB 🟢 -3.23 kB 🟢 -1.13 kB 🟢 -1.02 kB
assets/ComfyHubPublishDialog-CCMfumrY.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +90 B
assets/ComfyHubPublishDialog-y_srxFd4.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/useSubscriptionDialog--iLKVDmH.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +90 B
assets/useSubscriptionDialog-7iddxGFT.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -97 B

Status: 6 added / 6 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton--TLNScVH.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.73 kB 🟢 -3.31 kB
assets/ComfyQueueButton-Bw3xqqCU.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.73 kB 🔴 +3.31 kB
assets/useTerminalTabs-B6rS7ECY.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.27 kB
assets/useTerminalTabs-NrxhHNhx.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.27 kB
assets/InviteMembersForm-BW0Nv7tF.js (new) 7.96 kB 🔴 +7.96 kB 🔴 +2.65 kB 🔴 +2.37 kB
assets/InviteMembersForm-CVGsyc_Y.js (removed) 7.96 kB 🟢 -7.96 kB 🟢 -2.65 kB 🟢 -2.37 kB
assets/SubscribeButton-0jy8zMVf.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -965 B 🟢 -843 B
assets/SubscribeButton-5ct5ytJ8.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +966 B 🔴 +846 B
assets/cloudFeedbackTopbarButton-BDaDxh2c.js (removed) 705 B 🟢 -705 B 🟢 -420 B 🟢 -360 B
assets/cloudFeedbackTopbarButton-Dt6Q4H6a.js (new) 705 B 🔴 +705 B 🔴 +419 B 🔴 +361 B
assets/ComfyQueueButton-c5f7y2rg.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -93 B
assets/ComfyQueueButton-DqckRdQK.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B

Status: 6 added / 6 removed / 9 unchanged

Data & Services — 3.47 MB (baseline 3.47 MB) • 🔴 +232 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-uyx16e7M.js (new) 3.2 MB 🔴 +3.2 MB 🔴 +739 kB 🔴 +557 kB
assets/settingStore-BTBhUGvt.js (removed) 3.2 MB 🟢 -3.2 MB 🟢 -739 kB 🟢 -557 kB
assets/load3dService-DwyImZK2.js (new) 132 kB 🔴 +132 kB 🔴 +29.2 kB 🔴 +24.6 kB
assets/load3dService-m-gzT2xV.js (removed) 132 kB 🟢 -132 kB 🟢 -29.2 kB 🟢 -24.6 kB
assets/api-CCCp5aEK.js (removed) 97.1 kB 🟢 -97.1 kB 🟢 -26.8 kB 🟢 -23 kB
assets/api-DUGabITH.js (new) 97.1 kB 🔴 +97.1 kB 🔴 +26.8 kB 🔴 +23 kB
assets/workflowShareService-QuTQsrSv.js (removed) 16.4 kB 🟢 -16.4 kB 🟢 -4.89 kB 🟢 -4.34 kB
assets/workflowShareService-YZTQtYPI.js (new) 16.4 kB 🔴 +16.4 kB 🔴 +4.89 kB 🔴 +4.34 kB
assets/keybindingService-8uzsHp4d.js (new) 7.16 kB 🔴 +7.16 kB 🔴 +1.84 kB 🔴 +1.6 kB
assets/keybindingService-BKPNLpKW.js (removed) 7.16 kB 🟢 -7.16 kB 🟢 -1.83 kB 🟢 -1.59 kB
assets/releaseStore-58hcd9SK.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.77 kB
assets/releaseStore-D0I4EwBG.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/systemStatsStore-DkngEOMf.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/systemStatsStore-DNgMzLqL.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/userStore-Cp0zntqZ.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +896 B 🔴 +794 B
assets/userStore-cPAUMtJC.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -895 B 🟢 -794 B
assets/audioService-DNzgaKZX.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -830 B 🟢 -725 B
assets/audioService-nYGgSF-m.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +830 B 🔴 +724 B
assets/dialogService-C21b3TqB.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -85 B
assets/dialogService-DmL7Pr_N.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +84 B
assets/releaseStore-BtAhsaje.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +90 B
assets/releaseStore-BtWB7G_k.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -91 B
assets/settingStore-CNDtJC8F.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -88 B
assets/settingStore-DMEOEql1.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +81 B
assets/assetsStore-D8KBWb2z.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -83 B
assets/assetsStore-m_EAun8x.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +84 B
assets/api-D0d-3PJ4.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-lNM2KDDR.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 14 added / 14 removed / 3 unchanged

Utilities & Hooks — 386 kB (baseline 386 kB) • 🔴 +36 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BCA55sr3.js (removed) 235 kB 🟢 -235 kB 🟢 -52.5 kB 🟢 -42.7 kB
assets/useConflictDetection-C8d8W8AN.js (new) 235 kB 🔴 +235 kB 🔴 +52.5 kB 🔴 +42.7 kB
assets/useLoad3d-2GCZAbY0.js (new) 25.7 kB 🔴 +25.7 kB 🔴 +5.79 kB 🔴 +5.13 kB
assets/useLoad3d-RJOZUkOV.js (removed) 25.7 kB 🟢 -25.7 kB 🟢 -5.79 kB 🟢 -5.13 kB
assets/useLoad3dViewer-Cjj_gS1v.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.37 kB
assets/useLoad3dViewer-Dr9YZgEk.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useImageCrop-C9cW2HZN.js (removed) 15 kB 🟢 -15 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useImageCrop-CLEXIftB.js (new) 15 kB 🔴 +15 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useDowngradeToPersonal-BAQ2wwCe.js (removed) 8.85 kB 🟢 -8.85 kB 🟢 -2.53 kB 🟢 -2.17 kB
assets/useDowngradeToPersonal-VNX-UtNI.js (new) 8.85 kB 🔴 +8.85 kB 🔴 +2.53 kB 🔴 +2.17 kB
assets/useFeatureFlags-CMG9NfDw.js (new) 7.55 kB 🔴 +7.55 kB 🔴 +2.21 kB 🔴 +1.86 kB
assets/useFeatureFlags--R-Sxs7p.js (removed) 7.52 kB 🟢 -7.52 kB 🟢 -2.21 kB 🟢 -1.86 kB
assets/assetPreviewUtil-DTw8NDdt.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +969 B 🔴 +837 B
assets/assetPreviewUtil-l6UEk6rf.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -969 B 🟢 -838 B
assets/useUpstreamValue-D3Uhfj8-.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -755 B 🟢 -676 B
assets/useUpstreamValue-hvjog8ip.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +756 B 🔴 +676 B
assets/useWorkspaceTierLabel-2TYMj9vY.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -813 B 🟢 -699 B
assets/useWorkspaceTierLabel-CZ4jJL7Z.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +814 B 🔴 +698 B
assets/subscriptionCheckoutUtil-CjZPqBWm.js (new) 773 B 🔴 +773 B 🔴 +469 B 🔴 +406 B
assets/subscriptionCheckoutUtil-Cr0B2l_g.js (removed) 773 B 🟢 -773 B 🟢 -467 B 🟢 -390 B
assets/useSessionCookie-CzaZn0OZ.js (new) 692 B 🔴 +692 B 🔴 +356 B 🔴 +307 B
assets/useSessionCookie-DFyra3uJ.js (removed) 692 B 🟢 -692 B 🟢 -354 B 🟢 -307 B
assets/useLoad3d-BdXhOA4N.js (new) 311 B 🔴 +311 B 🔴 +165 B 🔴 +147 B
assets/useLoad3d-DtFE0O6P.js (removed) 311 B 🟢 -311 B 🟢 -165 B 🟢 -147 B
assets/useSessionCookie-C8jYKNkQ.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -71 B
assets/useSessionCookie-VnGr2TL0.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +82 B
assets/useFeatureFlags-BTYSOt14.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +80 B
assets/useFeatureFlags-BZqF3mTp.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -85 B
assets/useLoad3dViewer-DkxyMt7r.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +85 B
assets/useLoad3dViewer-TapMUSrr.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -83 B
assets/useCurrentUser-De_txlT9.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -81 B
assets/useCurrentUser-Dq5jO3Hz.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +84 B

Status: 16 added / 16 removed / 20 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-DIe_zo9q.js (new) 111 kB 🔴 +111 kB 🔴 +28.7 kB 🔴 +24.3 kB
assets/core-jKxnxZtv.js (removed) 111 kB 🟢 -111 kB 🟢 -28.7 kB 🟢 -24.3 kB
assets/WidgetSelect-AiBe6plf.js (new) 88.7 kB 🔴 +88.7 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-Bl9nhkm5.js (removed) 88.7 kB 🟢 -88.7 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/Load3D-BqgoX1IR.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -9.98 kB
assets/Load3D-SVWJK5gP.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +9.98 kB
assets/WidgetVideoEdit-BwqdLEEr.js (new) 63.4 kB 🔴 +63.4 kB 🔴 +14.6 kB 🔴 +12.9 kB
assets/WidgetVideoEdit-CoA_D0b7.js (removed) 63.4 kB 🟢 -63.4 kB 🟢 -14.6 kB 🟢 -12.9 kB
assets/SubscriptionTransitionPreviewWorkspace-C6qPndGZ.js (removed) 63.1 kB 🟢 -63.1 kB 🟢 -13 kB 🟢 -11.3 kB
assets/SubscriptionTransitionPreviewWorkspace-ICeZcAs2.js (new) 63.1 kB 🔴 +63.1 kB 🔴 +13 kB 🔴 +11.4 kB
assets/WorkspaceSettingsPanelContent-D38Qgj3l.js (removed) 61.6 kB 🟢 -61.6 kB 🟢 -13.2 kB 🟢 -11.5 kB
assets/WorkspaceSettingsPanelContent-D87Vjxvm.js (new) 61.6 kB 🔴 +61.6 kB 🔴 +13.2 kB 🔴 +11.4 kB
assets/Preview3d-BogYGN-S.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.3 kB 🟢 -7.23 kB
assets/Preview3d-Dh9IJ6fy.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.3 kB 🔴 +7.24 kB
assets/main-BQpM7DDF.js (removed) 47 kB 🟢 -47 kB 🟢 -13.8 kB 🟢 -12 kB
assets/main-CfnqoInm.js (new) 47 kB 🔴 +47 kB 🔴 +13.8 kB 🔴 +12 kB
assets/SubscriptionRequiredDialogContentUnified-Cncz5zmI.js (new) 42.9 kB 🔴 +42.9 kB 🔴 +9.46 kB 🔴 +8.24 kB
assets/SubscriptionRequiredDialogContentUnified-m6gHrniJ.js (removed) 42.9 kB 🟢 -42.9 kB 🟢 -9.46 kB 🟢 -8.24 kB
assets/MembersPanelContent-DAgjxEvg.js (removed) 41.8 kB 🟢 -41.8 kB 🟢 -8.79 kB 🟢 -7.82 kB
assets/MembersPanelContent-OsUE0S4z.js (new) 41.8 kB 🔴 +41.8 kB 🔴 +8.79 kB 🔴 +7.83 kB
assets/WidgetBoundingBoxes-COQpx6sD.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.15 kB 🔴 +8.13 kB
assets/WidgetBoundingBoxes-CWMkbZYn.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.15 kB 🟢 -8.13 kB
assets/WidgetPainter-af5kdIji.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.86 kB 🔴 +6.97 kB
assets/WidgetPainter-BiTE_Xf6.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -6.96 kB
assets/SubscriptionPanelContentWorkspace-DNMhClL9.js (new) 31.9 kB 🔴 +31.9 kB 🔴 +7.07 kB 🔴 +6.23 kB
assets/SubscriptionPanelContentWorkspace-Dx56UkLq.js (removed) 31.9 kB 🟢 -31.9 kB 🟢 -7.07 kB 🟢 -6.23 kB
assets/Load3dViewerContent-HCYKXO13.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.26 kB 🔴 +5.43 kB
assets/Load3dViewerContent-rcQ0G49T.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.26 kB 🟢 -5.43 kB
assets/SubscriptionRequiredDialogContent-Bgl9X9fl.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -6.14 kB 🟢 -5.39 kB
assets/SubscriptionRequiredDialogContent-BYFkLObw.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +6.14 kB 🔴 +5.4 kB
assets/SubscriptionRequiredDialogContentWorkspace-D0qbxlwZ.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.79 kB 🔴 +5.09 kB
assets/SubscriptionRequiredDialogContentWorkspace-Yj-UdD4y.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.8 kB 🟢 -5.12 kB
assets/load3d-B6V2ecIL.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.41 kB 🔴 +4.67 kB
assets/load3d-uAwqgBn2.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.4 kB 🟢 -4.67 kB
assets/CurrentUserPopoverWorkspace-D0b5GZX0.js (new) 20.7 kB 🔴 +20.7 kB 🔴 +4.73 kB 🔴 +4.2 kB
assets/CurrentUserPopoverWorkspace-DNUCSPMH.js (removed) 20.7 kB 🟢 -20.7 kB 🟢 -4.73 kB 🟢 -4.2 kB
assets/SignInContent-CBRG0j_d.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.1 kB 🔴 +4.45 kB
assets/SignInContent-DuDPpLxw.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.1 kB 🟢 -4.46 kB
assets/CreditsTile-BjRYsozt.js (new) 19 kB 🔴 +19 kB 🔴 +4.8 kB 🔴 +4.21 kB
assets/CreditsTile-YcUp8go3.js (removed) 19 kB 🟢 -19 kB 🟢 -4.8 kB 🟢 -4.22 kB
assets/WidgetRecordAudio-DJdBKzPc.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.59 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-DYd4FMhu.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.1 kB
assets/WidgetInputNumber-aNBf-X4B.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/WidgetInputNumber-WbsxzSR9.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetRange-DW-TdnK6.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.53 kB 🟢 -3.12 kB
assets/WidgetRange-s0-qXHW2.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.53 kB 🔴 +3.12 kB
assets/WaveAudioPlayer-BCNZ2FAW.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.04 kB
assets/WaveAudioPlayer-CfT4GK8O.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.05 kB
assets/WidgetCurve-B2yifE6j.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.47 kB 🔴 +3.14 kB
assets/WidgetCurve-BDBF7Us_.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.15 kB
assets/TeamWorkspacesDialogContent-9IMRs5Po.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/TeamWorkspacesDialogContent-DuchpTQv.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.63 kB
assets/onboardingCloudRoutes-CylkMNPT.js (removed) 9.05 kB 🟢 -9.05 kB 🟢 -2.76 kB 🟢 -2.38 kB
assets/onboardingCloudRoutes-DZstGu9Q.js (new) 9.05 kB 🔴 +9.05 kB 🔴 +2.77 kB 🔴 +2.37 kB
assets/Load3DConfiguration-5DJ5-UHq.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-BELBM_Xy.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/WidgetImageCrop-Clw5CvGO.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.65 kB 🟢 -2.34 kB
assets/WidgetImageCrop-DZFL-q50.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.65 kB 🔴 +2.33 kB
assets/SetMemberCreditLimitDialogContent-BiAjNrGM.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/SetMemberCreditLimitDialogContent-BIUXQWll.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/nodeTemplates-CJkia9sj.js (removed) 8.28 kB 🟢 -8.28 kB 🟢 -2.84 kB 🟢 -2.5 kB
assets/nodeTemplates-SCumpPCm.js (new) 8.28 kB 🔴 +8.28 kB 🔴 +2.84 kB 🔴 +2.5 kB
assets/NightlySurveyController-BdWVtfy4.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.24 kB
assets/NightlySurveyController-BdXDNH4M.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.25 kB
assets/WidgetWithControl-B01ZS2af.js (removed) 6.37 kB 🟢 -6.37 kB 🟢 -2.59 kB 🟢 -2.3 kB
assets/WidgetWithControl-D4b3nauZ.js (new) 6.37 kB 🔴 +6.37 kB 🔴 +2.59 kB 🔴 +2.28 kB
assets/tierBenefits-BmMvJPh9.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +1.97 kB 🔴 +1.72 kB
assets/tierBenefits-Da86jTcV.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -1.96 kB 🟢 -1.72 kB
assets/CancelSubscriptionDialogContent-rtgRyG2f.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/CancelSubscriptionDialogContent-v-spio7u.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/load3dPreviewExtensions-BJbZrD3J.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.59 kB
assets/load3dPreviewExtensions-DwLcVlWT.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/missingModelDownload-CooFTCRH.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +2.07 kB 🔴 +1.81 kB
assets/missingModelDownload-Hkl0Hpwy.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -2.07 kB 🟢 -1.81 kB
assets/launchCancellationFlow-BA5xAL4w.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.55 kB
assets/launchCancellationFlow-BfHVtcEp.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.77 kB 🔴 +1.56 kB
assets/CreateWorkspaceDialogContent-BiYgv-r9.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-DVUuX-hV.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/ChangeMemberRoleDialogContent-BxJC5Ju9.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.63 kB 🔴 +1.42 kB
assets/ChangeMemberRoleDialogContent-CrL6sTqS.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.63 kB 🟢 -1.43 kB
assets/EditWorkspaceDialogContent-DFV8HLGs.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/EditWorkspaceDialogContent-H7SWE2ZW.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/WidgetTextarea-DUvSTA5P.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.87 kB 🟢 -1.63 kB
assets/WidgetTextarea-k0AjYOSP.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/saveMesh-CEU1wUSY.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.53 kB 🔴 +1.34 kB
assets/saveMesh-Dvg9GR0V.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.35 kB
assets/WorkspacePanelContent-C8Lm_cey.js (new) 4.72 kB 🔴 +4.72 kB 🔴 +1.6 kB 🔴 +1.41 kB
assets/WorkspacePanelContent-Dz1Pl7ye.js (removed) 4.72 kB 🟢 -4.72 kB 🟢 -1.6 kB 🟢 -1.4 kB
assets/InviteMemberDialogContent-D5-yeO7H.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/InviteMemberDialogContent-W-t4w2hE.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.58 kB 🟢 -1.38 kB
assets/ValueControlPopover-IKS0nLJL.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/ValueControlPopover-MI6NtujH.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.54 kB 🔴 +1.38 kB
assets/DeleteWorkspaceDialogContent-CG7Pj731.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/DeleteWorkspaceDialogContent-DwMR5qj0.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/LeaveWorkspaceDialogContent--trF1PSh.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/LeaveWorkspaceDialogContent-CerCyt5-.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RemoveMemberDialogContent-D-lYt1OF.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.34 kB 🔴 +1.15 kB
assets/RemoveMemberDialogContent-SMcLPdi1.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.34 kB 🟢 -1.16 kB
assets/RevokeInviteDialogContent-BY7zGacA.js (removed) 3.56 kB 🟢 -3.56 kB 🟢 -1.35 kB 🟢 -1.17 kB
assets/RevokeInviteDialogContent-C8e2wU5X.js (new) 3.56 kB 🔴 +3.56 kB 🔴 +1.35 kB 🔴 +1.17 kB
assets/InviteMemberUpsellDialogContent-CzARGbRs.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.08 kB
assets/InviteMemberUpsellDialogContent-DgYljxwu.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.07 kB
assets/workspaceCheckoutTelemetry-Bk656BRK.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.33 kB
assets/workspaceCheckoutTelemetry-DQvn-S-c.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.33 kB
assets/Media3DTop-CAh8Qhd-.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.09 kB
assets/Media3DTop-DmSSq98w.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/GlobalToast-Bd_3wgMB.js (new) 3 kB 🔴 +3 kB 🔴 +1.22 kB 🔴 +1.05 kB
assets/GlobalToast-jKV3ogGc.js (removed) 3 kB 🟢 -3 kB 🟢 -1.22 kB 🟢 -1.04 kB
assets/load3dAdvanced-DPdzIN3J.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.1 kB 🔴 +958 B
assets/load3dAdvanced-rtUe0Zfy.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.1 kB 🟢 -955 B
assets/SubscribeToRun-BoTj12T_.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -900 B
assets/SubscribeToRun-DX2Ls7IO.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +922 B
assets/MediaAudioTop-BEctoXCY.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +807 B 🔴 +668 B
assets/MediaAudioTop-CU4-908E.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -807 B 🟢 -666 B
assets/CloudRunButtonWrapper-Cwk5BZS4.js (new) 1.05 kB 🔴 +1.05 kB 🔴 +513 B 🔴 +455 B
assets/CloudRunButtonWrapper-mfr6Uq-7.js (removed) 1.05 kB 🟢 -1.05 kB 🟢 -511 B 🟢 -458 B
assets/cloudSessionCookie-CRWtgDd_.js (removed) 933 B 🟢 -933 B 🟢 -431 B 🟢 -377 B
assets/cloudSessionCookie-ocywbg8w.js (new) 933 B 🔴 +933 B 🔴 +433 B 🔴 +378 B
assets/cloudBadges-nz1oPetr.js (new) 922 B 🔴 +922 B 🔴 +512 B 🔴 +433 B
assets/cloudBadges-xMRrGBQ_.js (removed) 922 B 🟢 -922 B 🟢 -511 B 🟢 -439 B
assets/Load3DAdvanced-3aANMSPC.js (new) 761 B 🔴 +761 B 🔴 +424 B 🔴 +360 B
assets/Load3DAdvanced-BV9dzn-P.js (removed) 761 B 🟢 -761 B 🟢 -422 B 🟢 -359 B
assets/nightlyBadges-B88B3Kql.js (removed) 411 B 🟢 -411 B 🟢 -269 B 🟢 -233 B
assets/nightlyBadges-CuDt8YeW.js (new) 411 B 🔴 +411 B 🔴 +270 B 🔴 +232 B
assets/missingModelDownload-B_bkCKr-.js (new) 371 B 🔴 +371 B 🔴 +202 B 🔴 +173 B
assets/missingModelDownload-E2d1wcD6.js (removed) 371 B 🟢 -371 B 🟢 -203 B 🟢 -173 B
assets/SubscriptionPanelContentWorkspace-2wk62Fp-.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -102 B
assets/SubscriptionPanelContentWorkspace-BaEbuAlc.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +93 B
assets/Load3dViewerContent-BdE7EA_9.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -94 B
assets/Load3dViewerContent-BdNMIBBk.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/Load3DAdvanced-0JeWo-Fh.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +87 B
assets/Load3DAdvanced-BmMHhpuX.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -90 B
assets/WidgetLegacy-Bjbv3U3-.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +95 B
assets/WidgetLegacy-BqbM9VIs.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -99 B
assets/workflowDraftStoreV2-BgdSKg0Q.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +109 B
assets/workflowDraftStoreV2-Df8rz4up.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -116 B
assets/Load3D-6p0Iv0nh.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +81 B
assets/Load3D-Bycr_O2o.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -83 B
assets/changeTracker-BMdLbqd6.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -87 B
assets/changeTracker-Dv6IiupZ.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +85 B

Status: 70 added / 70 removed / 211 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.4 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 49.2 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.2 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.1 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.4 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 81.9 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.9 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 · 44.3 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.4 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 152ms TBT · 72.9 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.1 MB heap
vue-large-graph-idle: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 158.7 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 392ms TBT · 159.5 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.0 MB heap

⚠️ 9 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 534ms 478ms -10% ⚠️ z=2.7
canvas-zoom-sweep: task duration 390ms 403ms +3% ⚠️ z=3.3
dom-widget-clipping: task duration 386ms 407ms +5% ⚠️ z=2.6
large-graph-idle: task duration 702ms 683ms -3% ⚠️ z=2.6
large-graph-pan: task duration 1370ms 1347ms -2% ⚠️ z=6.1
large-graph-pan: script duration 469ms 452ms -4% ⚠️ z=2.2
minimap-idle: task duration 728ms 698ms -4% ⚠️ z=3.6
subgraph-dom-widget-clipping: task duration 397ms 417ms +5% ⚠️ z=2.1
subgraph-idle: task duration 480ms 515ms +7% ⚠️ z=4.6
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 8ms -8% z=-2.8
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 9 +0% z=-3.8
canvas-idle: task duration 534ms 478ms -10% ⚠️ z=2.7
canvas-idle: script duration 21ms 18ms -17% z=-3.4
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.6 MB 66.4 MB -0%
canvas-idle: DOM nodes 18 18 +0% z=-3.6
canvas-idle: event listeners 4 4 +0% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.9
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 4ms 4ms -0% z=0.1
canvas-mouse-sweep: style recalc duration 39ms 44ms +14% z=0.4
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 75 77 +2% z=-0.9
canvas-mouse-sweep: task duration 943ms 925ms -2% z=1.0
canvas-mouse-sweep: script duration 130ms 131ms +0% z=-0.8
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 50.0 MB 49.2 MB -2%
canvas-mouse-sweep: DOM nodes 56 -281 -602% z=-132.7
canvas-mouse-sweep: event listeners 4 -152 -3900% z=-38.5
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +1%
canvas-zoom-sweep: layout duration 1ms 1ms +9% z=-0.2
canvas-zoom-sweep: style recalc duration 18ms 19ms +2% z=-0.4
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +3% z=1.6
canvas-zoom-sweep: task duration 390ms 403ms +3% ⚠️ z=3.3
canvas-zoom-sweep: script duration 21ms 22ms +5% z=-1.6
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 69.5 MB 69.3 MB -0%
canvas-zoom-sweep: DOM nodes 77 77 +0% z=-2.8
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.2
dom-widget-clipping: p95 frame time 17ms 17ms -0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 9ms +9% z=-1.5
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 11 -5% z=-5.2
dom-widget-clipping: task duration 386ms 407ms +5% ⚠️ z=2.6
dom-widget-clipping: script duration 62ms 63ms +1% z=-1.5
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 50.6 MB 50.2 MB -1%
dom-widget-clipping: DOM nodes 18 17 -6% z=-3.6
dom-widget-clipping: event listeners 2 0 -100% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms -0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 9ms 8ms -5% z=-3.7
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 9 +0% z=-8.3
large-graph-idle: task duration 702ms 683ms -3% ⚠️ z=2.6
large-graph-idle: script duration 110ms 108ms -2% z=0.5
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 63.5 MB 64.1 MB +1%
large-graph-idle: DOM nodes -281 -281 -0% z=-337.7
large-graph-idle: event listeners -149 -162 +9% z=-30.8
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.2
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 14ms 15ms +4% z=-2.9
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 -1% z=-1.7
large-graph-pan: task duration 1370ms 1347ms -2% ⚠️ z=6.1
large-graph-pan: script duration 469ms 452ms -4% ⚠️ z=2.2
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.5 MB 62.4 MB -0%
large-graph-pan: DOM nodes -283 -284 +0% z=-183.3
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 +0%
large-graph-zoom: layout duration 7ms 7ms -0%
large-graph-zoom: style recalc duration 15ms 15ms -0%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 65 -1%
large-graph-zoom: task duration 1610ms 1510ms -6%
large-graph-zoom: script duration 573ms 540ms -6%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 67.6 MB 81.9 MB +21%
large-graph-zoom: DOM nodes -287 11 -104%
large-graph-zoom: event listeners -153 8 -105%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 6ms -25% z=-4.2
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 7 -19% z=-4.5
minimap-idle: task duration 728ms 698ms -4% ⚠️ z=3.6
minimap-idle: script duration 120ms 114ms -5% z=1.6
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 64.1 MB 64.9 MB +1%
minimap-idle: DOM nodes -284 -284 +0% z=-221.6
minimap-idle: event listeners -179 -149 -17% 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 11ms +3% z=-1.7
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 +0% z=-1.6
subgraph-dom-widget-clipping: task duration 397ms 417ms +5% ⚠️ z=2.1
subgraph-dom-widget-clipping: script duration 118ms 122ms +3% z=-1.1
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 51.3 MB 51.2 MB -0%
subgraph-dom-widget-clipping: DOM nodes 20 20 +0% z=-1.9
subgraph-dom-widget-clipping: event listeners 6 6 +0% z=-1.7
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms -0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 8ms +9% z=-2.6
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 10 +6% z=-2.1
subgraph-idle: task duration 480ms 515ms +7% ⚠️ z=4.6
subgraph-idle: script duration 16ms 16ms +3% z=-1.5
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 66.2 MB 44.3 MB -33%
subgraph-idle: DOM nodes 18 -280 -1656% z=-201.9
subgraph-idle: event listeners 4 -153 -3925% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 5ms 4ms -10% z=-1.0
subgraph-mouse-sweep: style recalc duration 38ms 37ms -2% z=-1.6
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 77 +2% z=-1.9
subgraph-mouse-sweep: task duration 809ms 811ms +0% z=0.7
subgraph-mouse-sweep: script duration 96ms 95ms -2% z=-0.9
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 57.1 MB 50.4 MB -12%
subgraph-mouse-sweep: DOM nodes 61 42 -32% z=-11.4
subgraph-mouse-sweep: event listeners 4 -75 -1963% 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 13ms +3%
subgraph-transition-enter: style recalc duration 31ms 31ms +2%
subgraph-transition-enter: layout count 15 15 +0%
subgraph-transition-enter: style recalc count 19 19 +0%
subgraph-transition-enter: task duration 919ms 1013ms +10%
subgraph-transition-enter: script duration 34ms 39ms +13%
subgraph-transition-enter: TBT 128ms 152ms +19%
subgraph-transition-enter: heap used 94.1 MB 72.9 MB -22%
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 +1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 37ms 36ms -3%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 248 -1%
viewport-pan-sweep: task duration 4652ms 4639ms -0%
viewport-pan-sweep: script duration 1475ms 1419ms -4%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 68.5 MB 65.1 MB -5%
viewport-pan-sweep: DOM nodes -282 -285 +1%
viewport-pan-sweep: event listeners -133 -148 +11%
vue-large-graph-idle: avg frame time 18ms 18ms +0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 17346ms 17406ms +0%
vue-large-graph-idle: script duration 602ms 595ms -1%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 158.9 MB 158.7 MB -0%
vue-large-graph-idle: DOM nodes -8312 -8317 +0%
vue-large-graph-idle: event listeners -16385 -16387 +0%
vue-large-graph-pan: avg frame time 18ms 18ms -3%
vue-large-graph-pan: p95 frame time 17ms 17ms +1%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 18ms 19ms +2%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 145 147 +1%
vue-large-graph-pan: task duration 21007ms 21052ms +0%
vue-large-graph-pan: script duration 895ms 900ms +1%
vue-large-graph-pan: TBT 324ms 392ms +21%
vue-large-graph-pan: heap used 156.6 MB 159.5 MB +2%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16381 -16385 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.1
workflow-execution: p95 frame time 17ms 17ms -0%
workflow-execution: layout duration 1ms 1ms -7% z=-5.9
workflow-execution: style recalc duration 17ms 19ms +10% z=-2.6
workflow-execution: layout count 3 3 +0% z=-3.6
workflow-execution: style recalc count 12 13 +8% z=-2.3
workflow-execution: task duration 103ms 113ms +9% z=-0.9
workflow-execution: script duration 9ms 10ms +14% z=-6.3
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 65.1 MB 65.0 MB -0%
workflow-execution: DOM nodes 121 128 +5% z=-4.7
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-04T22:09:15.241Z",
  "gitSha": "4edb5d5ca0aac168943f2d8228ae0452b973cf18",
  "branch": "synap5e/feat/model-type-flag-features-endpoint",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2018.5730000000035,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.075000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 477.72999999999996,
      "heapDeltaBytes": 5476084,
      "heapUsedBytes": 69783360,
      "domNodes": 16,
      "jsHeapTotalBytes": 24117248,
      "scriptDurationMs": 16.638000000000005,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-idle",
      "durationMs": 2022.4660000000085,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.534999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 477.97100000000006,
      "heapDeltaBytes": 5456840,
      "heapUsedBytes": 69446868,
      "domNodes": 20,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 18.751000000000005,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1948.5139999999888,
      "styleRecalcs": 79,
      "styleRecalcDurationMs": 49.270999999999994,
      "layouts": 12,
      "layoutDurationMs": 3.798,
      "taskDurationMs": 941.216,
      "heapDeltaBytes": -11800188,
      "heapUsedBytes": 52295956,
      "domNodes": -281,
      "jsHeapTotalBytes": 23572480,
      "scriptDurationMs": 131.652,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1874.5090000001028,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 38.504000000000005,
      "layouts": 12,
      "layoutDurationMs": 3.476,
      "taskDurationMs": 908.8889999999999,
      "heapDeltaBytes": -13359212,
      "heapUsedBytes": 50820948,
      "domNodes": -281,
      "jsHeapTotalBytes": 24621056,
      "scriptDurationMs": 129.64199999999997,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1770.3180000000316,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.846999999999998,
      "layouts": 6,
      "layoutDurationMs": 0.644,
      "taskDurationMs": 396.148,
      "heapDeltaBytes": 8703884,
      "heapUsedBytes": 72640056,
      "domNodes": 77,
      "jsHeapTotalBytes": 24117248,
      "scriptDurationMs": 20.662,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1754.8849999999447,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.192,
      "layouts": 6,
      "layoutDurationMs": 0.627,
      "taskDurationMs": 409.529,
      "heapDeltaBytes": 8609132,
      "heapUsedBytes": 72784812,
      "domNodes": 77,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 23.951,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 626.102000000003,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.196,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 426.799,
      "heapDeltaBytes": -11458288,
      "heapUsedBytes": 52740284,
      "domNodes": 16,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 64.124,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 573.0189999999311,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.163,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 387.59900000000005,
      "heapDeltaBytes": -11334636,
      "heapUsedBytes": 52638132,
      "domNodes": 18,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 62.018,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2052.3000000000025,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.391,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 675.008,
      "heapDeltaBytes": 7966700,
      "heapUsedBytes": 66632800,
      "domNodes": -281,
      "jsHeapTotalBytes": 2990080,
      "scriptDurationMs": 106.05399999999999,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2037.7070000000685,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.34,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 691.8900000000001,
      "heapDeltaBytes": 7982888,
      "heapUsedBytes": 67712232,
      "domNodes": -280,
      "jsHeapTotalBytes": 4038656,
      "scriptDurationMs": 109.672,
      "eventListeners": -177,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2214.332000000013,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.708000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1321.839,
      "heapDeltaBytes": 5215232,
      "heapUsedBytes": 65560456,
      "domNodes": -282,
      "jsHeapTotalBytes": 3969024,
      "scriptDurationMs": 444.363,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2254.4090000000097,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 14.194999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1371.2140000000002,
      "heapDeltaBytes": 4346012,
      "heapUsedBytes": 65344368,
      "domNodes": -285,
      "jsHeapTotalBytes": 3706880,
      "scriptDurationMs": 460.1460000000001,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3182.7710000000025,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 15.350000000000003,
      "layouts": 60,
      "layoutDurationMs": 7.370000000000001,
      "taskDurationMs": 1504.0650000000003,
      "heapDeltaBytes": 23685504,
      "heapUsedBytes": 85616120,
      "domNodes": 12,
      "jsHeapTotalBytes": 7340032,
      "scriptDurationMs": 534.151,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3196.8460000000505,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 14.032,
      "layouts": 60,
      "layoutDurationMs": 7.393999999999999,
      "taskDurationMs": 1515.5210000000002,
      "heapDeltaBytes": 23886512,
      "heapUsedBytes": 86077404,
      "domNodes": 10,
      "jsHeapTotalBytes": 7864320,
      "scriptDurationMs": 545.583,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2034.1370000000438,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.297999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 670.083,
      "heapDeltaBytes": 7043944,
      "heapUsedBytes": 68043936,
      "domNodes": -283,
      "jsHeapTotalBytes": 2727936,
      "scriptDurationMs": 105.601,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2040.4809999999998,
      "styleRecalcs": 5,
      "styleRecalcDurationMs": 4.975999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 726.4300000000001,
      "heapDeltaBytes": 6934612,
      "heapUsedBytes": 68099916,
      "domNodes": -285,
      "jsHeapTotalBytes": 3252224,
      "scriptDurationMs": 121.919,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 589.0579999999659,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.767,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 396.72900000000004,
      "heapDeltaBytes": -10367892,
      "heapUsedBytes": 53673940,
      "domNodes": 20,
      "jsHeapTotalBytes": 25952256,
      "scriptDurationMs": 118.792,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 633.1750000000511,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.495,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 438.207,
      "heapDeltaBytes": -10446868,
      "heapUsedBytes": 53650488,
      "domNodes": 20,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 124.20899999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2011.261999999988,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.504000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 493.34200000000004,
      "heapDeltaBytes": -17739840,
      "heapUsedBytes": 46634836,
      "domNodes": -280,
      "jsHeapTotalBytes": 23310336,
      "scriptDurationMs": 14.112,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2012.4419999999645,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.226999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 535.7989999999999,
      "heapDeltaBytes": -17711012,
      "heapUsedBytes": 46309852,
      "domNodes": -280,
      "jsHeapTotalBytes": 23834624,
      "scriptDurationMs": 18.26,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1720.4899999999839,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 40.062,
      "layouts": 16,
      "layoutDurationMs": 4.962999999999999,
      "taskDurationMs": 858.623,
      "heapDeltaBytes": -18431420,
      "heapUsedBytes": 45742836,
      "domNodes": 20,
      "jsHeapTotalBytes": 24096768,
      "scriptDurationMs": 97.004,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1676.2050000000954,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 34.32,
      "layouts": 16,
      "layoutDurationMs": 3.7619999999999996,
      "taskDurationMs": 764.304,
      "heapDeltaBytes": -4222600,
      "heapUsedBytes": 59867080,
      "domNodes": 63,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 92.739,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1418.8769999999522,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 31.101000000000003,
      "layouts": 15,
      "layoutDurationMs": 13.254999999999999,
      "taskDurationMs": 1012.8959999999998,
      "heapDeltaBytes": 3825620,
      "heapUsedBytes": 76447496,
      "domNodes": 13673,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 38.89700000000001,
      "eventListeners": 2375,
      "totalBlockingTimeMs": 152,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8455.059000000005,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 36.89099999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4583.59,
      "heapDeltaBytes": 5196976,
      "heapUsedBytes": 64605396,
      "domNodes": -284,
      "jsHeapTotalBytes": 5017600,
      "scriptDurationMs": 1422.041,
      "eventListeners": -163,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8410.961000000043,
      "styleRecalcs": 247,
      "styleRecalcDurationMs": 35.427,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4694.972,
      "heapDeltaBytes": 11347472,
      "heapUsedBytes": 71924672,
      "domNodes": -286,
      "jsHeapTotalBytes": 5804032,
      "scriptDurationMs": 1415.819,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17652.502000000026,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17621.492000000002,
      "heapDeltaBytes": -44525152,
      "heapUsedBytes": 165725128,
      "domNodes": -8321,
      "jsHeapTotalBytes": -11476992,
      "scriptDurationMs": 624.409,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.773333333333238,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17219.394999999964,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17189.626,
      "heapDeltaBytes": -49588556,
      "heapUsedBytes": 167126352,
      "domNodes": -8312,
      "jsHeapTotalBytes": -9900032,
      "scriptDurationMs": 564.766,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21088.49600000002,
      "styleRecalcs": 147,
      "styleRecalcDurationMs": 19.30599999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 21035.801,
      "heapDeltaBytes": -49451268,
      "heapUsedBytes": 166562208,
      "domNodes": -8312,
      "jsHeapTotalBytes": -10428416,
      "scriptDurationMs": 909.944,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 335,
      "frameDurationMs": 17.776666666666763,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21110.52099999995,
      "styleRecalcs": 146,
      "styleRecalcDurationMs": 18.24600000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 21068.837000000003,
      "heapDeltaBytes": -37161956,
      "heapUsedBytes": 167978692,
      "domNodes": -8312,
      "jsHeapTotalBytes": -6758400,
      "scriptDurationMs": 890.4439999999998,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 448,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 458.09299999996256,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 18.607,
      "layouts": 3,
      "layoutDurationMs": 0.743,
      "taskDurationMs": 115.992,
      "heapDeltaBytes": 5309596,
      "heapUsedBytes": 68268484,
      "domNodes": 132,
      "jsHeapTotalBytes": 5505024,
      "scriptDurationMs": 10.774,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "workflow-execution",
      "durationMs": 461.7150000000265,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 18.404999999999998,
      "layouts": 3,
      "layoutDurationMs": 0.6480000000000001,
      "taskDurationMs": 110.40300000000002,
      "heapDeltaBytes": 5074484,
      "heapUsedBytes": 68065960,
      "domNodes": 123,
      "jsHeapTotalBytes": 4718592,
      "scriptDurationMs": 10.051,
      "eventListeners": 97,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    }
  ]
}

@codecov

codecov Bot commented Jul 27, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 85.71429% with 1 line in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/stores/modelStore.ts 83.33% 1 Missing ⚠️
@@            Coverage Diff             @@
##             main   #14160      +/-   ##
==========================================
+ Coverage   78.57%   78.86%   +0.28%     
==========================================
  Files        1767     1794      +27     
  Lines      102351   107480    +5129     
  Branches    31515    35409    +3894     
==========================================
+ Hits        80421    84759    +4338     
- Misses      21510    22239     +729     
- Partials      420      482      +62     
Flag Coverage Δ
unit 70.94% <85.71%> (+0.72%) ⬆️

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

Files with missing lines Coverage Δ
src/composables/useFeatureFlags.ts 79.54% <100.00%> (-4.93%) ⬇️
src/stores/modelStore.ts 93.63% <83.33%> (+0.99%) ⬆️

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

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

🤖 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/useModelTypeTagsRefresh.test.ts`:
- Around line 93-150: Add tests in the useSupportsModelTypeTagsRefresh suite
covering both hidden-tab skip paths: mock document.hidden as true before
dispatching visibilitychange and assert fetchApiSpy is not called again, then
use fake timers and assert the polling interval also does not refetch while
hidden. Restore existing timer and document mocks through the suite cleanup.

In `@src/platform/assets/composables/useModelTypeTagsRefresh.ts`:
- Around line 19-34: Update refreshSupportsModelTypeTags to use a monotonic
request id, mirroring modelStore.ts's loadModelFolders pattern. Increment the id
for each invocation, capture the current value before fetchApi, and only update
httpSupportsModelTypeTags.value when the response belongs to the latest request;
ensure stale responses cannot overwrite newer results.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 59e8a832-1e5f-412e-89c6-ed62e6266bde

📥 Commits

Reviewing files that changed from the base of the PR and between b68776b and dc5086d.

📒 Files selected for processing (7)
  • src/composables/useFeatureFlags.test.ts
  • src/composables/useFeatureFlags.ts
  • src/platform/assets/composables/useModelTypeTagsRefresh.test.ts
  • src/platform/assets/composables/useModelTypeTagsRefresh.ts
  • src/stores/modelStore.test.ts
  • src/stores/modelStore.ts
  • src/views/GraphView.vue

Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.test.ts Outdated
Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.ts Outdated
export async function refreshSupportsModelTypeTags(): Promise<void> {
const sequence = ++refreshSequence
try {
const response = await api.fetchApi('/features', { cache: 'no-store' })

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.

why are we doing another fetch of features here? Why can't we piggyback off of useFeatureFlags?

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.

Fair question — the duplication with refreshRemoteConfig's /api/features poller is real, and the comment that originally justified this file (claiming a dynamic-config entry could "shadow" the server capability) was wrong: remoteConfig is the verbatim /features response, so nothing shadows anything. That comment has been rewritten at head 837eaaa.

The real reasons this doesn't piggyback on refreshRemoteConfig today:

  1. Clear-on-error flap: refreshRemoteConfig sets remoteConfig to {} on any fetch error, which would flip supports_model_type_tags to undefined and trigger spurious model-library reloads on transient network blips. This poller keeps the last known value on error.
  2. No reconnect/visibility triggers: it only refreshes on a 600s interval (cloud-only), so a flag flip or rollback wouldn't reach an open tab for up to 10 minutes; this feature needs refresh on WS reconnect and tab-visible.
  3. No response-ordering guard: overlapping fetches could let a stale response overwrite a newer one; this poller has a monotonic sequence guard.

The right fix is to harden refreshRemoteConfig (keep-last-value on error, ordering guard, reconnect/visibility triggers) and fold this poller into it so there's one /features poller and one source of truth. That's tracked in FE-1439, assigned to Simon.


Generated by Claude Code

Comment thread src/composables/useFeatureFlags.ts Outdated
ServerFeatureFlag.SUPPORTS_MODEL_TYPE_TAGS,
false
return (
httpSupportsModelTypeTags.value ??

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.

why different pattern for this flag?

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.

This flag resolves differently because it's a server capability that must be able to change mid-session: the WS copy (api.getServerFeature) arrives once per connection and is never re-pushed, and the remoteConfig-based resolution used by the other flags inherits refreshRemoteConfig's problems — it clears remoteConfig to {} on any fetch error (which would flap this flag and cause spurious model-library reloads), has no reconnect/visibility triggers, and has no out-of-order response guard. So this one prefers a dedicated refreshable HTTP value and falls back to the WS copy for backends that don't serve the key over HTTP.

To be clear, the earlier code comment here claiming a dynamic-config entry could "shadow" the capability was wrong (remoteConfig is the verbatim /features response) and has been rewritten at head 837eaaa with the real rationale above. The duplication is acknowledged as temporary: hardening refreshRemoteConfig and folding the dedicated poller into it is tracked in FE-1439 (assigned to Simon), after which this flag can resolve through the common path.


Generated by Claude Code

Base automatically changed from synap5e/test/assets-sidebar-e2e to main July 28, 2026 23:13
synap5e and others added 3 commits July 29, 2026 21:57
The websocket copy of the flag is requested once per connection and never
re-pushed, so a dynamic-config flip or rollback on cloud never reaches
open sessions; after a rollback, stale namespaced-mode tabs show an empty
model library until a manual page reload. Prefer the flag from HTTP
GET /features (read from the raw response so dynamic config cannot shadow
it), refresh it on reconnect, tab visibility, and a slow interval, and
reload the model library when the effective value changes. Backends
without the HTTP key keep today's websocket-only behavior.
The refresh triggers (reconnect, visibility, interval) can overlap; without
an ordering guard a slow pre-flip response could commit after a newer one
and revert the capability until the next poll. Also cover the hidden-tab
skip paths in tests.
The removed comments claimed a dynamic-config entry could shadow the
server capability; remoteConfig is the verbatim /features response, so
that was wrong. Document the real reasons for not reusing
refreshRemoteConfig (clear-on-error flap, no reconnect/visibility
triggers, no ordering guard) and link FE-1439 for consolidation.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01EoxqQwDLUP2VnbBPLX5E4y
@claude
claude Bot force-pushed the synap5e/feat/model-type-flag-features-endpoint branch from 83cafc6 to 837eaaa Compare July 29, 2026 22:02

@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/platform/assets/composables/useModelTypeTagsRefresh.test.ts`:
- Around line 148-188: Update the timer advancement in the three
tests—“re-fetches on the polling interval,” “does not fetch on visibility events
or interval ticks while hidden,” and “stops all refresh triggers when the scope
is disposed”—to use vi.advanceTimersByTimeAsync for each polling interval,
preserving the existing assertions and test behavior.
- Around line 25-28: Update the beforeEach hook in useModelTypeTagsRefresh tests
to call vi.resetAllMocks() instead of vi.clearAllMocks(), while preserving the
httpSupportsModelTypeTags.value reset.

In `@src/platform/assets/composables/useModelTypeTagsRefresh.ts`:
- Around line 28-38: Update the response parsing in the refresh flow around the
features fetch to validate the untyped JSON with a small Zod schema containing
the optional supports_model_type_tags boolean field. Replace the ad hoc object
and property checks with the schema parse result, while preserving the sequence
guard and assigning undefined when the field is absent or invalid.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 9da3f3d2-6e87-4bda-9de2-ab35c636b9a2

📥 Commits

Reviewing files that changed from the base of the PR and between dc5086d and 837eaaa.

📒 Files selected for processing (4)
  • src/composables/useFeatureFlags.test.ts
  • src/composables/useFeatureFlags.ts
  • src/platform/assets/composables/useModelTypeTagsRefresh.test.ts
  • src/platform/assets/composables/useModelTypeTagsRefresh.ts

Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.test.ts Outdated
Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.test.ts Outdated
Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.ts Outdated
@claude claude Bot added the cursor-review Trigger multi-model Cursor agent review on this PR label Jul 29, 2026
- beforeEach uses vi.resetAllMocks() per path instructions
- interval tests use await vi.advanceTimersByTimeAsync(...)
- /features response parsed with a zod schema instead of ad hoc
  typeof checks; sequence guard and error semantics unchanged

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01EoxqQwDLUP2VnbBPLX5E4y
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 29, 2026

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔍 Cursor Review — Consolidated panel

Triggered by @claude[bot].

Found 6 finding(s).

Severity Count
🟡 Medium 4
🟢 Low 2

Panel: 8/8 reviewers contributed findings.

Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.ts Outdated
const sequence = ++refreshSequence
try {
const response = await api.fetchApi('/features', { cache: 'no-store' })
if (!response.ok) return

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 Medium — Returning early on any !response.ok retains the last HTTP-served value, so once /features has served true and the endpoint later disappears (e.g. a backend downgrade returning 404), the flag is stuck true: the ?? in useFeatureFlags never falls through to the correct websocket value. Clear httpSupportsModelTypeTags on a 404 (endpoint gone) while keeping it on transient 5xx. Raised by 1 of 8 reviewers (gemini-3.1-pro edge-case).

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.

Retain-on-error is deliberate and test-pinned ("keeps the last known value on an error response" in useModelTypeTagsRefresh.test.ts): clearing on 404 would reintroduce flag flap during rolling deploys, where mixed pod sets behind a load balancer can briefly 404 the route while the websocket copy lacks the key — flipping the effective flag and firing a spurious full model-library reload, which is exactly the failure mode this composable exists to avoid. Note a 200 response without the key already clears the value (useModelTypeTagsRefresh.ts:45-47), so the common downgrade case converges correctly. The residual window is only a downgrade to a backend predating /features entirely, where the websocket value takes over on the next page load — an accepted trade-off for this PR's scope.


Generated by Claude Code

Comment thread src/stores/modelStore.ts Outdated
if (!usesAssetApi()) return
try {
await reloadModels()
} catch (error) {

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 Medium — A failed reloadModels() is only logged, and because the watcher fires only on value change, a later poll that re-reports the same capability will not retrigger it — leaving the library built under the previous tagging scheme until an unrelated reload or another flag transition. Consider retrying or setting a 'needs reload' flag that a subsequent trigger can honor. Raised by 1 of 8 reviewers (gpt-5.6-sol-max edge-case).

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.

Real but narrow, and largely self-healing: reloadModels() calls assetService.invalidateModelBuckets() synchronously before anything can throw (src/stores/modelStore.ts:455), so even on failure the stale bucket cache is gone and any later folder load walks fresh data under the new scheme. The library also recovers on manual refresh, any scan-complete event (reloadAfterScan), or the next flag transition, and hitting the window requires the capability flip to coincide with a transient reload failure. A retry state machine isn't warranted within this PR's scope — happy to split it into a follow-up if wanted.


Generated by Claude Code

Comment thread src/stores/modelStore.ts
// tagging scheme without a page reload. reloadModels also discards the
// asset service's bucket cache.
watch(
() => flags.supportsModelTypeTags,

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 Medium — The async watcher on flags.supportsModelTypeTags does not cancel or serialize an in-flight reloadModels(); if the capability flaps (true→false→true, e.g. during deploy thrash) overlapping reloads can interleave and leave the store inconsistent. Guard with an in-flight token or debounce the handler. Raised by 2 of 8 reviewers (gemini-3.1-pro adversarial, kimi-k2.7-code adversarial).

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.

The store already serializes this: overlapping reloadModels() calls cannot interleave commits because prepareModelFolders bumps and re-checks a monotonic request id (src/stores/modelStore.ts:351-353), and reloadModels re-checks it again right before its single atomic commit (src/stores/modelStore.ts:473-474). A superseded reload builds detached folder objects off-screen and discards them without touching live state, so a true→false→true flap wastes requests but ends with only the newest-started reload committing. No change needed.


Generated by Claude Code

Comment thread src/composables/useFeatureFlags.ts Outdated
Comment thread src/platform/assets/composables/useModelTypeTagsRefresh.ts Outdated
…v override

The refresh triggers (reconnect, visibility, interval) could overlap, so a stalled /features endpoint accumulated hung requests and a later failed fetch's sequence bump could discard an earlier successful response. Coalesce overlapping refreshes into one in-flight request with an AbortSignal timeout, matching the existing fetch-timeout pattern; the single request always commits or retains, so the start-order guard is no longer needed. Also consult the DEV-only ff: localStorage override before preferring the HTTP-served value, so the documented supports_model_type_tags override keeps working after an HTTP refresh, consistent with every other overridable flag.

@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/composables/useFeatureFlags.ts`:
- Around line 252-255: In the SUPPORTS_MODEL_TYPE_TAGS override handling, update
the guard after getDevOverride<boolean> to return only when override has typeof
"boolean"; let all other values fall through to the existing HTTP/websocket
resolution. Add a regression test covering a string value such as "false" and
confirming it is not returned as the boolean override.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 6146c3cb-5bd0-4ff8-99dc-e0f05967a5f5

📥 Commits

Reviewing files that changed from the base of the PR and between 14a9826 and 35aeeea.

📒 Files selected for processing (4)
  • src/composables/useFeatureFlags.test.ts
  • src/composables/useFeatureFlags.ts
  • src/platform/assets/composables/useModelTypeTagsRefresh.test.ts
  • src/platform/assets/composables/useModelTypeTagsRefresh.ts

Comment thread src/composables/useFeatureFlags.ts Outdated
getDevOverride casts parsed JSON without validation, so a localStorage value like '"false"' (a JSON string) was returned as a truthy string from the boolean getter. Narrow the guard to typeof override === 'boolean' and fall through to the HTTP/websocket resolution otherwise, with a regression test covering the string-valued override.
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 29, 2026
…pe-flag-features-endpoint

# Conflicts:
#	src/composables/useFeatureFlags.test.ts
@synap5e
synap5e marked this pull request as ready for review July 31, 2026 19:13
@synap5e
synap5e requested a review from a team July 31, 2026 19:13
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Jul 31, 2026
@dosubot

dosubot Bot commented Jul 31, 2026

Copy link
Copy Markdown

📄 Knowledge review

Dosu skipped reviewing this PR because your organization has used its 200 included credits for the month. Your usage will reset on 2026-09-01. To have Dosu review this PR before then, ask your organization admin to upgrade to a pro account.


Leave Feedback Ask Dosu about ComfyUI_frontend Add Dosu to your team

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: ccb7424521

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/stores/modelStore.ts Outdated
Comment on lines +547 to +552
await reloadModels()
} catch (error) {
console.error(
'Failed to reload the model library after a capability change',
error
)

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Retry a failed capability-change reload

If reloadModels() encounters a transient /experiment/models or asset-walk failure during the flag transition, this catch only logs it. Subsequent 120-second /features refreshes retain the same boolean, so the watcher never runs again and the library remains built using the old tagging scheme until another action manually reloads it. Retry the reload after failure or retrigger convergence after later successful capability refreshes.

Useful? React with 👍 / 👎.

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.

Mechanically accurate but already triaged: an earlier review round raised this exact point and the no-retry design was kept deliberately (see #14160 (comment)). The failure is largely self-healing because reloadModels() calls assetService.invalidateModelBuckets() synchronously before anything can throw (src/stores/modelStore.ts:455), so even when the walk fails the stale bucket cache is gone and any later folder load, manual refresh, scan-complete reload, or next flag transition converges to the new tagging scheme. Hitting the residual window requires the capability flip to coincide with a transient fetch failure, so a retry state machine stays out of this PR's scope; a follow-up remains an option if maintainers want one.


Generated by Claude Code

refreshRemoteConfig previously cleared remoteConfig and window.__CONFIG__
to {} on any fetch error or abort, flapping every remote-config-backed
flag to its default on a transient blip. It now only clears on a 401/403
auth transition and otherwise keeps the last-known-good value.

This lets supportsModelTypeTags move off its bespoke HTTP poller
(useModelTypeTagsRefresh, now deleted) onto the same resolveFlag path as
every other server flag.
@dosubot dosubot Bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:L This PR changes 100-499 lines, ignoring generated files. labels Aug 1, 2026
@claude claude Bot changed the title feat(assets): refresh supports_model_type_tags from /api/features fix: retain last-known-good remoteConfig on transient fetch errors Aug 1, 2026
@dosubot dosubot Bot added size:S This PR changes 10-29 lines, ignoring generated files. and removed size:M This PR changes 30-99 lines, ignoring generated files. labels Aug 4, 2026
@AustinMroz
AustinMroz added this pull request to the merge queue Aug 4, 2026
@AustinMroz
AustinMroz removed this pull request from the merge queue due to a manual request Aug 4, 2026
@AustinMroz AustinMroz changed the title fix: retain last-known-good remoteConfig on transient fetch errors fix: handle changes to supportsModelTypeTags Aug 4, 2026
@AustinMroz
AustinMroz added this pull request to the merge queue Aug 4, 2026
Merged via the queue into main with commit d73006c Aug 4, 2026
74 of 75 checks passed
@AustinMroz
AustinMroz deleted the synap5e/feat/model-type-flag-features-endpoint branch August 4, 2026 22:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cursor-review Trigger multi-model Cursor agent review on this PR size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants