Skip to content

feat(workspace): creator-only canManageSubscriptionLifecycle permission (FE-770)#12829

Merged
dante01yoon merged 11 commits into
mainfrom
jaewon/fe-770-creator-lifecycle-permission
Jun 19, 2026
Merged

feat(workspace): creator-only canManageSubscriptionLifecycle permission (FE-770)#12829
dante01yoon merged 11 commits into
mainfrom
jaewon/fe-770-creator-lifecycle-permission

Conversation

@dante01yoon

@dante01yoon dante01yoon commented Jun 13, 2026

Copy link
Copy Markdown
Collaborator

What

Adds a creator-only canManageSubscriptionLifecycle permission (cancel / reactivate / downgrade) to useWorkspaceUI:

  • Any workspace owner keeps canManageSubscription (manage payment / top-up / change-commit).
  • Only the original owner (creator) also gets canManageSubscriptionLifecycle.
  • Personal workspaces (single-member) always get it; members never do.

Driven by an is_creator flag on the workspace from /api/workspaces, plumbed through the shared type and the auth/session Zod schema.

Safe to merge ahead of BE / no regression

BE contract (confirmed with Hunter, 2026-06-17)

  • is_creator = current-user-relative boolean on /api/workspaces; the creator is tracked explicitly (not by creation date).
  • Intentionally temporary — removed once member-removal auto-provisions a personal workspace.
  • The FE-770 members-panel creator-row lock additionally needs the creator id (created_by_user_id) — separate, still-open ask.

Follow-up (separate PR, once BE ships)

is_creator + WorkspaceWithRoleSchema are hand-rolled only because the cloud ingest OpenAPI doesn't expose the field yet. @comfyorg/ingest-types already generates WorkspaceWithRole + zWorkspaceWithRole. Once BE adds is_creator to services/ingest/openapi.yaml, regenerate and swap the hand-rolled interface + schema for the generated ones (TODOs marked in workspaceApi.ts / workspaceAuthStore.ts).

…on (FE-770)

Adds a creator-only subscription-lifecycle permission so cancel / reactivate /
downgrade can be gated to the workspace's original owner (any owner keeps
canManageSubscription for manage-payment / top-up / change-commit), per the
billing-permission matrix in the FE SSOT.

ASSUMES /api/workspaces exposes a current-user-relative is_creator flag — BE
spec is NOT finalized (field shape + original-owner determination are open,
FE-770 Q3 / BE-1337). Fails closed: when is_creator is absent the lifecycle
permission is false, so no behavior changes until the BE signal lands. Code
comments mark every assumption point for revisit. Consumers (FE-978 cancel/
reactivate, FE-977 downgrade) wire to this once it is available.
@dante01yoon dante01yoon requested a review from a team June 13, 2026 11:35
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Jun 13, 2026
@coderabbitai

coderabbitai Bot commented Jun 13, 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

Adds an optional is_creator workspace flag, a new canManageSubscriptionLifecycle permission gated by original-owner status, wires the owner flag from store into the composable, and adds tests validating permission outcomes across workspace types and owner scenarios.

Changes

Creator-Only Subscription Lifecycle Permissions

Layer / File(s) Summary
API & type contract: is_creator field
src/platform/workspace/api/workspaceApi.ts, src/platform/workspace/workspaceTypes.ts, src/platform/workspace/stores/workspaceAuthStore.ts
WorkspaceWithRole and the auth/schema parsing accept an optional is_creator?: boolean to preserve an original-owner indicator through API and session parsing.
Permission logic: canManageSubscriptionLifecycle gating
src/platform/workspace/composables/useWorkspaceUI.ts
WorkspacePermissions gains canManageSubscriptionLifecycle; getPermissions now accepts isOriginalOwner and sets lifecycle access: personal=true, owner=depends on isOriginalOwner, member=false.
State integration: derive and wire original owner flag
src/platform/workspace/composables/useWorkspaceUI.ts
Composable derives isOriginalOwner from store.activeWorkspace?.is_creator ?? false and passes it into the permissions computed.
Test coverage: permission behavior
src/platform/workspace/composables/useWorkspaceUI.test.ts
Tests cover canManageSubscriptionLifecycle for personal owners, team owners with is_creator true/false, missing is_creator, and team members.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Suggested reviewers

  • jtydhr88

Poem

🐰 A little flag hops into place,
Marking the original owner's trace.
Permissions check, the tests agree,
Creator-only lifecycle, safe and free—
Hooray for code that keeps the pace! 🥕

🚥 Pre-merge checks | ✅ 6 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 50.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (6 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: adding a creator-only permission for subscription lifecycle management, with the relevant issue reference.
Description check ✅ Passed The description comprehensively covers all template sections: a clear summary of what changed, detailed breakdown of changes (What/Breaking/Dependencies), critical design decisions in Review Focus, and context for safe merging.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
End-To-End Regression Coverage For Fixes ✅ Passed PR uses no bug-fix language (no "fix"/"bugfix"/etc. in commit subject or description); explicitly labeled as infrastructure feature work not addressing a bug.
Adr Compliance For Entity/Litegraph Changes ✅ Passed ADR compliance check does not apply: PR modifies only workspace platform files (src/platform/workspace/*), not litegraph, ECS, or graph entity files within the check's scope.

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

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch jaewon/fe-770-creator-lifecycle-permission

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

❤️ Share

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

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

Inline comments:
In `@src/platform/workspace/api/workspaceApi.ts`:
- Around line 23-34: The new optional field is_creator was added to the
WorkspaceWithRole interface but the schema/typing that build UI state still
drops it; update the shared types and parsing to preserve this flag: add
is_creator?: boolean to the Workspace shape in workspaceTypes (match
WorkspaceWithRole) and update the parsing/schema in workspaceAuthStore (the code
that currently maps to { id, name, type, role }) to include and pass through
is_creator from the backend payload (or default to false/undefined if absent) so
the UI state receives the creator flag consistently and creator-only checks work
when the backend sends it.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 69139e30-e711-4ba9-a27b-1b18bc060099

📥 Commits

Reviewing files that changed from the base of the PR and between b5b124f and 6583e65.

📒 Files selected for processing (3)
  • src/platform/workspace/api/workspaceApi.ts
  • src/platform/workspace/composables/useWorkspaceUI.test.ts
  • src/platform/workspace/composables/useWorkspaceUI.ts

Comment thread src/platform/workspace/api/workspaceApi.ts
@codecov

codecov Bot commented Jun 13, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 75.67568% with 9 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
...e/components/SubscriptionPanelContentWorkspace.vue 0.00% 8 Missing and 1 partial ⚠️
@@             Coverage Diff             @@
##             main   #12829       +/-   ##
===========================================
- Coverage   76.76%   62.99%   -13.77%     
===========================================
  Files        1573     1461      -112     
  Lines      107148    74615    -32533     
  Branches    33135    19374    -13761     
===========================================
- Hits        82248    47007    -35241     
- Misses      23982    27262     +3280     
+ Partials      918      346      -572     
Flag Coverage Δ
e2e ?
unit 62.99% <75.67%> (+<0.01%) ⬆️

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

Files with missing lines Coverage Δ
src/platform/workspace/api/workspaceApi.ts 85.31% <ø> (+31.20%) ⬆️
...rkspace/components/CurrentUserPopoverWorkspace.vue 68.18% <100.00%> (ø)
.../platform/workspace/composables/useMembersPanel.ts 91.95% <ø> (ø)
...c/platform/workspace/composables/useWorkspaceUI.ts 100.00% <100.00%> (+7.69%) ⬆️
...rc/platform/workspace/stores/teamWorkspaceStore.ts 89.76% <100.00%> (+0.99%) ⬆️
...e/components/SubscriptionPanelContentWorkspace.vue 0.00% <0.00%> (ø)

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

… (FE-770)

CodeRabbit (#12829): is_creator was declared on api/workspaceApi WorkspaceWithRole
but the duplicate type in workspaceTypes.ts and the Zod schema in
workspaceAuthStore stripped it, so the flag could be dropped on the auth/session
parse path. Align both so the original-owner flag survives. Still ASSUMED / BE
spec not finalized (FE-770 Q3 / BE-1337); optional, fails closed.

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

🧹 Nitpick comments (1)
src/platform/workspace/workspaceTypes.ts (1)

18-26: ⚡ Quick win

Duplicate type definition creates sync burden.

WorkspaceWithRole is defined in both workspaceTypes.ts and api/workspaceApi.ts with identical fields. This duplication requires manual synchronization (as noted in the comment) and creates drift risk if one is updated without the other.

Consider unifying these definitions by importing from a single source, or document a clear rationale for maintaining separate definitions if architectural constraints require it.

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

In `@src/platform/workspace/workspaceTypes.ts` around lines 18 - 26, There are
duplicate type definitions for WorkspaceWithRole causing sync burden; remove the
duplicate declaration in workspaceTypes.ts and instead import and re-export the
single canonical WorkspaceWithRole type from the existing API module where it’s
already defined (the api-side WorkspaceWithRole that includes id, name, type:
'personal'|'team', role: 'owner'|'member', and optional is_creator), then update
any local references to use that imported type so only one source of truth
remains.
🤖 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.

Nitpick comments:
In `@src/platform/workspace/workspaceTypes.ts`:
- Around line 18-26: There are duplicate type definitions for WorkspaceWithRole
causing sync burden; remove the duplicate declaration in workspaceTypes.ts and
instead import and re-export the single canonical WorkspaceWithRole type from
the existing API module where it’s already defined (the api-side
WorkspaceWithRole that includes id, name, type: 'personal'|'team', role:
'owner'|'member', and optional is_creator), then update any local references to
use that imported type so only one source of truth remains.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: db68885b-1087-463f-8997-3c01e02382be

📥 Commits

Reviewing files that changed from the base of the PR and between 6583e65 and b4ee092.

📒 Files selected for processing (2)
  • src/platform/workspace/stores/workspaceAuthStore.ts
  • src/platform/workspace/workspaceTypes.ts

BE confirmed the current-user-relative is_creator boolean and that the
creator is tracked explicitly (not by creation date). Field stays optional
and gating fails closed until it actually ships on /api/workspaces.
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 17, 2026
…ps (FE-770)

WorkspaceWithRole + WorkspaceWithRoleSchema are hand-rolled only because the
cloud ingest OpenAPI doesn't expose is_creator yet. @comfyorg/ingest-types
already generates the type + zWorkspaceWithRole; swap to them in this PR once
the spec ships the field.
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 17, 2026

@pythongosssss pythongosssss left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

lgtm, would like the comment to be updated before this gets in though

joined_at: string
}

// TODO(this PR, once the cloud ingest OpenAPI exposes `is_creator`): drop this

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

TODO "this PR" is a bit confusing here

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Reworded in 96ac29b — dropped the this PR reference; it's now a plain forward TODO keyed on the cloud ingest OpenAPI exposing is_creator. The generated-type swap is tracked as a follow-up (PR description), since this one is safe to merge ahead of BE.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Reworded in 96ac29b to drop the PR-scoped "this PR" phrasing — the TODO now just points at swapping the hand-rolled type/schema for the generated WorkspaceWithRole/zWorkspaceWithRole once BE adds is_original_owner to the ingest OpenAPI.

…(FE-770)

Drop the confusing "this PR" reference per review; the comment outlives the PR,
so describe the swap condition (OpenAPI exposes is_creator) as a plain TODO.
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 18, 2026
@github-actions

github-actions Bot commented Jun 18, 2026

Copy link
Copy Markdown

📦 Bundle: 7.45 MB gzip 🔴 +507 B

Details

Summary

  • Raw size: 31.3 MB baseline 31.3 MB — 🔴 +1.91 kB
  • Gzip: 7.45 MB baseline 7.45 MB — 🔴 +507 B
  • Brotli: 5.1 MB baseline 5.1 MB — 🔴 +360 B
  • Bundles: 279 current • 279 baseline • 133 added / 133 removed

Category Glance
Utilities & Hooks 🔴 +1.61 kB (3.32 MB) · Other 🔴 +300 B (10.4 MB) · Graph Workspace 🔴 +2 B (1.25 MB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Panels & Settings ⚪ 0 B (525 kB) · Data & Services ⚪ 0 B (268 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-C4pB1tjJ.js (removed) 46.7 kB 🟢 -46.7 kB 🟢 -13.7 kB 🟢 -11.9 kB
assets/index-CLyNF36t.js (new) 46.7 kB 🔴 +46.7 kB 🔴 +13.7 kB 🔴 +11.9 kB

Status: 1 added / 1 removed

Graph Workspace — 1.25 MB (baseline 1.25 MB) • 🔴 +2 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-BbOfP4xP.js (new) 1.25 MB 🔴 +1.25 MB 🔴 +266 kB 🔴 +200 kB
assets/GraphView-BH78tInd.js (removed) 1.25 MB 🟢 -1.25 MB 🟢 -266 kB 🟢 -200 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-blALSJ8R.js (removed) 19.5 kB 🟢 -19.5 kB 🟢 -5.06 kB 🟢 -4.49 kB
assets/CloudSurveyView-CRccro2B.js (new) 19.5 kB 🔴 +19.5 kB 🔴 +5.06 kB 🔴 +4.49 kB
assets/CloudLoginView-B_je0dO7.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.69 kB
assets/CloudLoginView-D0P4wH_a.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.06 kB 🔴 +2.69 kB
assets/CloudSignupView-DdQEHbZQ.js (new) 9.7 kB 🔴 +9.7 kB 🔴 +2.71 kB 🔴 +2.38 kB
assets/CloudSignupView-T0KQYEyr.js (removed) 9.7 kB 🟢 -9.7 kB 🟢 -2.71 kB 🟢 -2.38 kB
assets/CloudLayoutView-Dn9wseus.js (removed) 9.36 kB 🟢 -9.36 kB 🟢 -2.34 kB 🟢 -2.02 kB
assets/CloudLayoutView-GtaeOYSa.js (new) 9.36 kB 🔴 +9.36 kB 🔴 +2.34 kB 🔴 +2.02 kB
assets/UserCheckView-BrfHj30p.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.93 kB
assets/UserCheckView-DDPG3uGu.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserSelectView-D-pA0ZCB.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/UserSelectView-DpOu8nDD.js (new) 6 kB 🔴 +6 kB 🔴 +2.15 kB 🔴 +1.89 kB
assets/CloudForgotPasswordView-DnkbnfgI.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.54 kB
assets/CloudForgotPasswordView-hYTOt9mq.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/CloudAuthTimeoutView-Dl48u3Ae.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.36 kB
assets/CloudAuthTimeoutView-SmcDg5o8.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/CloudSubscriptionRedirectView-CZuyM45x.js (new) 4.3 kB 🔴 +4.3 kB 🔴 +1.57 kB 🔴 +1.39 kB
assets/CloudSubscriptionRedirectView-UXn-rS6c.js (removed) 4.3 kB 🟢 -4.3 kB 🟢 -1.57 kB 🟢 -1.39 kB

Status: 9 added / 9 removed / 3 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-6ATHyqJz.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.96 kB 🟢 -8.82 kB
assets/KeybindingPanel-CoDc0uZy.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.96 kB 🔴 +8.82 kB
assets/SecretsPanel-BK6cRy6V.js (removed) 24.2 kB 🟢 -24.2 kB 🟢 -5.77 kB 🟢 -5.06 kB
assets/SecretsPanel-CArsQLEH.js (new) 24.2 kB 🔴 +24.2 kB 🔴 +5.77 kB 🔴 +5.07 kB
assets/LegacyCreditsPanel-CasDjr8O.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.52 kB 🔴 +4.85 kB
assets/LegacyCreditsPanel-T42p6sSP.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.52 kB 🟢 -4.84 kB
assets/SubscriptionPanel-DCz0X3Qv.js (removed) 19.2 kB 🟢 -19.2 kB 🟢 -5.04 kB 🟢 -4.42 kB
assets/SubscriptionPanel-n4cFOZwH.js (new) 19.2 kB 🔴 +19.2 kB 🔴 +5.03 kB 🔴 +4.41 kB
assets/AboutPanel-BAUftDGy.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.22 kB 🔴 +2.89 kB
assets/AboutPanel-BB5uls_C.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.22 kB 🟢 -2.89 kB
assets/ExtensionPanel-BGHekTEL.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.49 kB 🔴 +2.2 kB
assets/ExtensionPanel-wWPsP1B8.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.49 kB 🟢 -2.2 kB
assets/ServerConfigPanel-BZKX82ws.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.98 kB 🔴 +1.76 kB
assets/ServerConfigPanel-DrDJSSFW.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.98 kB 🟢 -1.77 kB
assets/UserPanel-BRkl2mhs.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/UserPanel-D6-2SZIv.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/refreshRemoteConfig-CMthK9aF.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.06 kB 🟢 -941 B
assets/refreshRemoteConfig-CwCWT-SY.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.06 kB 🔴 +942 B
assets/cloudRemoteConfig-BZTH2WHC.js (removed) 990 B 🟢 -990 B 🟢 -542 B 🟢 -455 B
assets/cloudRemoteConfig-LjSTmoZd.js (new) 990 B 🔴 +990 B 🔴 +541 B 🔴 +439 B
assets/refreshRemoteConfig-B7RiZ_0H.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +86 B
assets/refreshRemoteConfig-RGJ6Bk15.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -91 B

Status: 11 added / 11 removed / 15 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-DUhQGpHA.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/auth-xT3KGJcH.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.31 kB 🔴 +1.14 kB
assets/usePostAuthRedirect-BDbUHWHg.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.28 kB 🟢 -1.11 kB
assets/usePostAuthRedirect-BzFMRCuL.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.28 kB 🔴 +1.11 kB
assets/SignUpForm-BalUU6ON.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-CrH8t_vZ.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-DsFarHC_.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -874 B 🟢 -764 B
assets/UpdatePasswordContent-DWZzyEc_.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +877 B 🔴 +766 B
assets/authStore-CWtb64c2.js (removed) 130 B 🟢 -130 B 🟢 -109 B 🟢 -110 B
assets/authStore-DFM38vqu.js (new) 130 B 🔴 +130 B 🔴 +109 B 🔴 +108 B
assets/auth-B-RKJTj5.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +91 B
assets/auth-DY9mvBEH.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -92 B

Status: 6 added / 6 removed / 3 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-CT8VFU-Z.js (removed) 86 kB 🟢 -86 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/ComfyHubPublishDialog-DHTZYJ4A.js (new) 86 kB 🔴 +86 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/useShareDialog-C-2NGZNr.js (removed) 23.4 kB 🟢 -23.4 kB 🟢 -5.54 kB 🟢 -4.92 kB
assets/useShareDialog-CVvnhGUL.js (new) 23.4 kB 🔴 +23.4 kB 🔴 +5.54 kB 🔴 +4.92 kB
assets/ComfyHubPublishDialog-CqlaRCcy.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +88 B
assets/ComfyHubPublishDialog-DxFiIYGT.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -87 B
assets/useSubscriptionDialog-BeXg4pbh.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -89 B
assets/useSubscriptionDialog-CZQyQYFZ.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +90 B

Status: 4 added / 4 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-CErRV8L8.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.82 kB 🔴 +3.42 kB
assets/ComfyQueueButton-wOjKJXkg.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.83 kB 🟢 -3.42 kB
assets/useTerminalTabs-D3y-O5ZK.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.84 kB 🔴 +3.39 kB
assets/useTerminalTabs-Dp72fML1.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.84 kB 🟢 -3.39 kB
assets/SubscribeButton-Bgjlny3G.js (new) 2.44 kB 🔴 +2.44 kB 🔴 +1.05 kB 🔴 +946 B
assets/SubscribeButton-CppbUt9M.js (removed) 2.44 kB 🟢 -2.44 kB 🟢 -1.05 kB 🟢 -939 B
assets/cloudFeedbackTopbarButton-C2WWOFEB.js (new) 829 B 🔴 +829 B 🔴 +498 B 🔴 +420 B
assets/cloudFeedbackTopbarButton-CvpQ40Mw.js (removed) 829 B 🟢 -829 B 🟢 -495 B 🟢 -419 B
assets/ComfyQueueButton-BadMriJ0.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +95 B
assets/ComfyQueueButton-BLTRRFIk.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -92 B

Status: 5 added / 5 removed / 8 unchanged

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

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-C9ODJYuv.js (removed) 127 kB 🟢 -127 kB 🟢 -27.9 kB 🟢 -23.6 kB
assets/load3dService-fRbZwECj.js (new) 127 kB 🔴 +127 kB 🔴 +27.9 kB 🔴 +23.6 kB
assets/api-BJIjUB7u.js (new) 83.9 kB 🔴 +83.9 kB 🔴 +22.5 kB 🔴 +19.4 kB
assets/api-Gnksvqks.js (removed) 83.9 kB 🟢 -83.9 kB 🟢 -22.5 kB 🟢 -19.4 kB
assets/workflowShareService-bgtK8Uw8.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/workflowShareService-myJatZT9.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.9 kB 🟢 -4.35 kB
assets/keybindingService-BnmOEySw.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.23 kB
assets/keybindingService-Z2MXA3uF.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.23 kB
assets/releaseStore-C6tz5O91.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/releaseStore-HuwQGdx1.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/extensionStore-BfE74iEP.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/extensionStore-DF5fbusy.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/userStore-BACxk2Wz.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -827 B
assets/userStore-DkO_7vi0.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +931 B 🔴 +820 B
assets/audioService-213ZtiT4.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -862 B 🟢 -746 B
assets/audioService-DSH0hzZm.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +863 B 🔴 +751 B
assets/dialogService-8AdIkHJa.js (removed) 100 B 🟢 -100 B 🟢 -99 B 🟢 -98 B
assets/dialogService-BpzdXg_j.js (new) 100 B 🔴 +100 B 🔴 +99 B 🔴 +93 B
assets/settingStore-C1OI0n5R.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -90 B
assets/settingStore-qe_JpEYE.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +92 B
assets/assetsStore-BmR2_LS9.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +89 B
assets/assetsStore-DtnWSAzS.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -86 B
assets/releaseStore-BNTR8MdQ.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -79 B
assets/releaseStore-BPsQSexU.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +82 B
assets/api-Czd46JaM.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-D6xYQd9N.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 13 added / 13 removed / 3 unchanged

Utilities & Hooks — 3.32 MB (baseline 3.32 MB) • 🔴 +1.61 kB

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-DmkJ0StV.js (new) 2.97 MB 🔴 +2.97 MB 🔴 +686 kB 🔴 +517 kB
assets/promotionUtils-BST8fujR.js (removed) 2.97 MB 🟢 -2.97 MB 🟢 -686 kB 🟢 -517 kB
assets/useConflictDetection-CjvsOLX2.js (removed) 233 kB 🟢 -233 kB 🟢 -52 kB 🟢 -42.3 kB
assets/useConflictDetection-Y1pQP3El.js (new) 233 kB 🔴 +233 kB 🔴 +52 kB 🔴 +42.3 kB
assets/useLoad3d-D0H7BMgb.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.76 kB 🟢 -5.1 kB
assets/useLoad3d-DAQY5Xlw.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.76 kB 🔴 +5.1 kB
assets/useLoad3dViewer-BkNwLigL.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.35 kB
assets/useLoad3dViewer-C-SvfSbE.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useFeatureFlags-BhKxsAjh.js (removed) 5.37 kB 🟢 -5.37 kB 🟢 -1.65 kB 🟢 -1.41 kB
assets/useFeatureFlags-XA6JwavR.js (new) 5.37 kB 🔴 +5.37 kB 🔴 +1.65 kB 🔴 +1.41 kB
assets/downloadUtil-B80aUtZx.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.85 kB 🔴 +1.54 kB
assets/downloadUtil-DRVEYf6G.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.85 kB 🟢 -1.54 kB
assets/useSessionCookie-BOZytgX0.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.15 kB 🔴 +982 B
assets/useSessionCookie-DenZi4NV.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.15 kB 🟢 -976 B
assets/subscriptionCheckoutUtil-Co3yWE5o.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.19 kB
assets/subscriptionCheckoutUtil-DAk_NSUJ.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.19 kB
assets/useExternalLink-BEOCPGay.js (new) 3.03 kB 🔴 +3.03 kB 🔴 +1.16 kB 🔴 +1.03 kB
assets/useExternalLink-BIk3dsIn.js (removed) 3.03 kB 🟢 -3.03 kB 🟢 -1.16 kB 🟢 -1.02 kB
assets/assetPreviewUtil-_OQadVFk.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1.01 kB 🔴 +879 B
assets/assetPreviewUtil-2KlnWiUR.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1 kB 🟢 -874 B
assets/useUpstreamValue-C0iYVWBy.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -794 B 🟢 -702 B
assets/useUpstreamValue-yJO6_oV1.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +794 B 🔴 +708 B
assets/useErrorHandling-BmcNGx4e.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +646 B 🔴 +549 B
assets/useErrorHandling-DMyZy1Sw.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -646 B 🟢 -549 B
assets/useWorkspaceSwitch-CrYdK7q1.js (new) 748 B 🔴 +748 B 🔴 +385 B 🔴 +336 B
assets/useWorkspaceSwitch-D_7hCneJ.js (removed) 748 B 🟢 -748 B 🟢 -384 B 🟢 -337 B
assets/useLoad3d-CCT8l4yN.js (removed) 311 B 🟢 -311 B 🟢 -165 B 🟢 -150 B
assets/useLoad3d-DWCq0e6K.js (new) 311 B 🔴 +311 B 🔴 +165 B 🔴 +147 B
assets/useSessionCookie-CJwF1zOj.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +83 B
assets/useSessionCookie-eQtvvSiT.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -79 B
assets/useLoad3dViewer-CxCEMrvG.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +84 B
assets/useLoad3dViewer-DfOlzLVq.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -84 B
assets/useCurrentUser-CT8aYgAJ.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +88 B
assets/useCurrentUser-Z90qIlu4.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -85 B

Status: 17 added / 17 removed / 13 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 10.4 MB (baseline 10.4 MB) • 🔴 +300 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-CbfWNvjL.js (removed) 118 kB 🟢 -118 kB 🟢 -30.4 kB 🟢 -25.7 kB
assets/core-Mup8lmSU.js (new) 118 kB 🔴 +118 kB 🔴 +30.4 kB 🔴 +25.7 kB
assets/WidgetSelect-BQNi0kV6.js (new) 82.6 kB 🔴 +82.6 kB 🔴 +18.1 kB 🔴 +15.6 kB
assets/WidgetSelect-ZMvhI3N7.js (removed) 82.6 kB 🟢 -82.6 kB 🟢 -18.1 kB 🟢 -15.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-BVHlVDXp.js (new) 47.8 kB 🔴 +47.8 kB 🔴 +9.08 kB 🔴 +7.83 kB
assets/SubscriptionRequiredDialogContentWorkspace-CTmkdZUt.js (removed) 47.8 kB 🟢 -47.8 kB 🟢 -9.08 kB 🟢 -7.85 kB
assets/Load3DControls-D-GNtO9G.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.57 kB 🔴 +6.62 kB
assets/Load3DControls-D5T9R5Gg.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.57 kB 🟢 -6.62 kB
assets/WorkspacePanelContent-eUJZDVIt.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +6.97 kB 🔴 +6.19 kB
assets/WorkspacePanelContent-CKk57qQ8.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -6.96 kB 🟢 -6.17 kB
assets/WidgetPainter-CMc7cyuK.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -6.97 kB
assets/WidgetPainter-uT7BbiMp.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.86 kB 🔴 +6.97 kB
assets/Load3dViewerContent-DfrBr2Y2.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.31 kB 🟢 -5.47 kB
assets/Load3dViewerContent-DjOW-7od.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.47 kB
assets/SubscriptionRequiredDialogContent-B_fz_Jkc.js (new) 26.6 kB 🔴 +26.6 kB 🔴 +6.56 kB 🔴 +5.8 kB
assets/SubscriptionRequiredDialogContent-BS9GhpFF.js (removed) 26.6 kB 🟢 -26.6 kB 🟢 -6.56 kB 🟢 -5.78 kB
assets/WidgetImageCrop-C8w7_uKI.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.04 kB
assets/WidgetImageCrop-tamAiQQ-.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.75 kB 🔴 +5.05 kB
assets/SubscriptionPanelContentWorkspace-BycDKLTj.js (new) 22.3 kB 🔴 +22.3 kB 🔴 +5.2 kB 🔴 +4.58 kB
assets/SubscriptionPanelContentWorkspace-Cmik3LiL.js (removed) 22.1 kB 🟢 -22.1 kB 🟢 -5.16 kB 🟢 -4.55 kB
assets/load3d-B3NadrPY.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -5.18 kB 🟢 -4.49 kB
assets/load3d-DbYnTWRV.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +5.18 kB 🔴 +4.49 kB
assets/CurrentUserPopoverWorkspace-YTwSET4d.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +4.7 kB 🔴 +4.2 kB
assets/CurrentUserPopoverWorkspace-w9kL14JW.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.68 kB 🟢 -4.18 kB
assets/SignInContent-DD_1Tz1y.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +5 kB 🔴 +4.36 kB
assets/SignInContent-sZxi95ly.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -4.99 kB 🟢 -4.37 kB
assets/Load3D-BXoodTO5.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.52 kB 🟢 -3.94 kB
assets/Load3D-Cs06CJTd.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.52 kB 🔴 +3.94 kB
assets/WidgetInputNumber-DUBCsu29.js (new) 19 kB 🔴 +19 kB 🔴 +4.79 kB 🔴 +4.25 kB
assets/WidgetInputNumber-iSpCWFie.js (removed) 19 kB 🟢 -19 kB 🟢 -4.79 kB 🟢 -4.25 kB
assets/WidgetRecordAudio-CZtGqsgX.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRecordAudio-FwYm4m_I.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.14 kB
assets/WidgetRange-CXR11MBy.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.17 kB 🔴 +3.73 kB
assets/WidgetRange-wAeO5akt.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.73 kB
assets/WaveAudioPlayer-arjFe_gJ.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.48 kB 🟢 -3.05 kB
assets/WaveAudioPlayer-DRrHoxu5.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.49 kB 🔴 +3.05 kB
assets/i18n-CG0cWZ_X.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.17 kB 🟢 -2.66 kB
assets/i18n-9aXA9mDc.js (new) 11.6 kB 🔴 +11.6 kB 🔴 +3.16 kB 🔴 +2.67 kB
assets/WidgetCurve-De5pI0Cr.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.5 kB 🟢 -3.16 kB
assets/WidgetCurve-DRApokqq.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.5 kB 🔴 +3.17 kB
assets/AudioPreviewPlayer-_MxYali2.js (removed) 10.6 kB 🟢 -10.6 kB 🟢 -3.06 kB 🟢 -2.73 kB
assets/AudioPreviewPlayer-ByXptUCD.js (new) 10.6 kB 🔴 +10.6 kB 🔴 +3.06 kB 🔴 +2.73 kB
assets/TeamWorkspacesDialogContent-BJm4BIqx.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.01 kB 🟢 -2.68 kB
assets/TeamWorkspacesDialogContent-DySmErp_.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.01 kB 🔴 +2.67 kB
assets/Load3DConfiguration-B8CJ0BkK.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.67 kB 🔴 +2.35 kB
assets/Load3DConfiguration-yArPWqGo.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.66 kB 🟢 -2.35 kB
assets/nodeTemplates-B_3A3O5n.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.88 kB 🟢 -2.55 kB
assets/nodeTemplates-Cm5PvVoI.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.88 kB 🔴 +2.55 kB
assets/onboardingCloudRoutes-Bq8ZDXBu.js (removed) 8.2 kB 🟢 -8.2 kB 🟢 -2.54 kB 🟢 -2.2 kB
assets/onboardingCloudRoutes-Cj1VgobY.js (new) 8.2 kB 🔴 +8.2 kB 🔴 +2.54 kB 🔴 +2.19 kB
assets/NightlySurveyController-2JJVRFp1.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.38 kB
assets/NightlySurveyController-DXBlriQA.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.4 kB
assets/InviteMemberDialogContent-Dj1hn0-_.js (new) 7.03 kB 🔴 +7.03 kB 🔴 +2.13 kB 🔴 +1.85 kB
assets/InviteMemberDialogContent-PxOvGHBj.js (removed) 7.03 kB 🟢 -7.03 kB 🟢 -2.14 kB 🟢 -1.85 kB
assets/WidgetWithControl-DkjYJ6ZU.js (new) 6.3 kB 🔴 +6.3 kB 🔴 +2.54 kB 🔴 +2.23 kB
assets/WidgetWithControl-fHjKcW9H.js (removed) 6.3 kB 🟢 -6.3 kB 🟢 -2.54 kB 🟢 -2.26 kB
assets/load3dPreviewExtensions-BgK_o2Wk.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.76 kB 🔴 +1.55 kB
assets/load3dPreviewExtensions-BLob8AQ7.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.76 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-BWxiQRwC.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.59 kB
assets/CreateWorkspaceDialogContent-Vz4X0FdY.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.59 kB
assets/missingModelDownload-Bd6NLFxF.js (new) 5.07 kB 🔴 +5.07 kB 🔴 +1.98 kB 🔴 +1.72 kB
assets/missingModelDownload-Dm0hdq4c.js (removed) 5.07 kB 🟢 -5.07 kB 🟢 -1.98 kB 🟢 -1.72 kB
assets/FreeTierDialogContent-CLBrgZTj.js (new) 5.02 kB 🔴 +5.02 kB 🔴 +1.69 kB 🔴 +1.49 kB
assets/FreeTierDialogContent-jrx953TA.js (removed) 5.02 kB 🟢 -5.02 kB 🟢 -1.69 kB 🟢 -1.49 kB
assets/EditWorkspaceDialogContent-Bcbt7Fz8.js (removed) 5 kB 🟢 -5 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/EditWorkspaceDialogContent-D7d24fDf.js (new) 5 kB 🔴 +5 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/WidgetTextarea-0rMEuxkd.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.89 kB 🔴 +1.67 kB
assets/WidgetTextarea-Dkj5sw7z.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.9 kB 🟢 -1.67 kB
assets/saveMesh-CxZlDGPg.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.55 kB 🔴 +1.37 kB
assets/saveMesh-odYQv_4J.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.55 kB 🟢 -1.36 kB
assets/Preview3d-DTiv5mII.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.24 kB
assets/Preview3d-o_WmFMTk.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.24 kB
assets/ValueControlPopover-CecCL4d1.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.59 kB 🟢 -1.41 kB
assets/ValueControlPopover-tR6xa997.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.59 kB 🔴 +1.41 kB
assets/CancelSubscriptionDialogContent-C1b34cQq.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.66 kB 🟢 -1.44 kB
assets/CancelSubscriptionDialogContent-DfBnG81i.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.66 kB 🔴 +1.44 kB
assets/tierBenefits-4xKdcP4T.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/tierBenefits-DjbOBXt5.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/ApiNodesSignInContent-DfY9zbdb.js (new) 4.14 kB 🔴 +4.14 kB 🔴 +1.34 kB 🔴 +1.18 kB
assets/ApiNodesSignInContent-lTRqWtj4.js (removed) 4.14 kB 🟢 -4.14 kB 🟢 -1.34 kB 🟢 -1.18 kB
assets/DeleteWorkspaceDialogContent-Cdg-zaF2.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.27 kB
assets/DeleteWorkspaceDialogContent-wJDxqDtl.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.27 kB
assets/LeaveWorkspaceDialogContent-DAW7YLMc.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.42 kB 🔴 +1.22 kB
assets/LeaveWorkspaceDialogContent-DyJHEt63.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.22 kB
assets/RemoveMemberDialogContent-BOBgR-In.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.19 kB
assets/RemoveMemberDialogContent-BqKxD2i_.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.37 kB 🔴 +1.19 kB
assets/RevokeInviteDialogContent-D9qHLFum.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-MAZIclRJ.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.2 kB
assets/InviteMemberUpsellDialogContent-bfUlP7Wp.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/InviteMemberUpsellDialogContent-Cclm2wkB.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.23 kB 🔴 +1.08 kB
assets/Media3DTop--gOWWXZl.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/Media3DTop-D3veTq4D.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/GlobalToast-BAfnD8Dr.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/GlobalToast-BonYl2Ks.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/load3dAdvanced-Bn0p8Dfc.js (new) 2.85 kB 🔴 +2.85 kB 🔴 +1.12 kB 🔴 +975 B
assets/load3dAdvanced-Cka-XzAk.js (removed) 2.85 kB 🟢 -2.85 kB 🟢 -1.12 kB 🟢 -974 B
assets/SubscribeToRun-DZwK_V8b.js (new) 2.53 kB 🔴 +2.53 kB 🔴 +1.1 kB 🔴 +975 B
assets/SubscribeToRun-g_gM5I66.js (removed) 2.53 kB 🟢 -2.53 kB 🟢 -1.1 kB 🟢 -990 B
assets/graphHasMissingNodes-C3W9wtu1.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +908 B 🔴 +794 B
assets/graphHasMissingNodes-CALCnCzq.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -908 B 🟢 -791 B
assets/MediaAudioTop-Bwh-OUt3.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +837 B 🔴 +693 B
assets/MediaAudioTop-DgOekk-6.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -837 B 🟢 -691 B
assets/signInSchema-BPcEE-hm.js (new) 1.6 kB 🔴 +1.6 kB 🔴 +583 B 🔴 +509 B
assets/signInSchema-BVOI_SsR.js (removed) 1.6 kB 🟢 -1.6 kB 🟢 -585 B 🟢 -515 B
assets/CloudRunButtonWrapper-B623v1tD.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -550 B 🟢 -518 B
assets/CloudRunButtonWrapper-DmJRM5s_.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +549 B 🔴 +515 B
assets/cloudSessionCookie-B87tCJHs.js (new) 991 B 🔴 +991 B 🔴 +467 B 🔴 +429 B
assets/cloudSessionCookie-DXVoUS37.js (removed) 991 B 🟢 -991 B 🟢 -468 B 🟢 -416 B
assets/cloudBadges-Cn7BySHr.js (new) 973 B 🔴 +973 B 🔴 +550 B 🔴 +469 B
assets/cloudBadges-s4c-mQ5y.js (removed) 973 B 🟢 -973 B 🟢 -550 B 🟢 -468 B
assets/Load3DAdvanced-BfhlDFIi.js (removed) 813 B 🟢 -813 B 🟢 -454 B 🟢 -408 B
assets/Load3DAdvanced-DSUU7iqD.js (new) 813 B 🔴 +813 B 🔴 +455 B 🔴 +409 B
assets/nightlyBadges-BwidTa9y.js (removed) 464 B 🟢 -464 B 🟢 -305 B 🟢 -253 B
assets/nightlyBadges-CJ3xUAQV.js (new) 464 B 🔴 +464 B 🔴 +306 B 🔴 +254 B
assets/missingModelDownload-BytJ_j2_.js (new) 228 B 🔴 +228 B 🔴 +150 B 🔴 +129 B
assets/missingModelDownload-D66iXSuf.js (removed) 228 B 🟢 -228 B 🟢 -149 B 🟢 -129 B
assets/SubscriptionPanelContentWorkspace-C3gbC_rs.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +90 B
assets/SubscriptionPanelContentWorkspace-DGj3OE-n.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -93 B
assets/Load3dViewerContent-BowahcIb.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -91 B
assets/Load3dViewerContent-Chhuq9qX.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/Load3DAdvanced-B1mcNvl9.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +87 B
assets/Load3DAdvanced-BmyF4998.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -88 B
assets/WidgetLegacy-BMkUu0cM.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +96 B
assets/WidgetLegacy-CANu7iki.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -96 B
assets/workflowDraftStoreV2-BrmCc0JH.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +107 B
assets/workflowDraftStoreV2-DMG7kEEf.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -116 B
assets/Load3D-BXsIsSAl.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -90 B
assets/Load3D-DxpoeG36.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +87 B
assets/i18n-3EYyS-tl.js (removed) 97 B 🟢 -97 B 🟢 -92 B 🟢 -89 B
assets/i18n-jLu9vyI0.js (new) 97 B 🔴 +97 B 🔴 +92 B 🔴 +89 B
assets/changeTracker-B4BG2UUX.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +83 B
assets/changeTracker-olYs2KVb.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -84 B

Status: 66 added / 66 removed / 84 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.7 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 48.9 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.0 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.6 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.7 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.9 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.3 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.2 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.6 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.6 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.3 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 154ms TBT · 74.5 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.0 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 162.2 MB heap
vue-large-graph-pan: · 57.2 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 162.3 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.1 MB heap

⚠️ 2 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
large-graph-pan: style recalc duration 20ms 20ms +2% ⚠️ z=3.4
workflow-execution: DOM nodes 159 176 +10% ⚠️ z=2.1
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 7ms 10ms +50% z=-0.8
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 12 +28% z=0.6
canvas-idle: task duration 414ms 360ms -13% z=-1.1
canvas-idle: script duration 23ms 22ms -3% z=-1.4
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 53.8 MB 53.7 MB -0%
canvas-idle: DOM nodes 16 23 +44% z=0.3
canvas-idle: event listeners 4 4 +0% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 3ms 4ms +15% z=-0.2
canvas-mouse-sweep: style recalc duration 31ms 40ms +29% z=-0.7
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 78 +8% z=-0.5
canvas-mouse-sweep: task duration 657ms 801ms +22% z=-1.1
canvas-mouse-sweep: script duration 106ms 124ms +18% z=-1.8
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 48.6 MB 48.9 MB +1%
canvas-mouse-sweep: DOM nodes 55 61 +10% z=-0.7
canvas-mouse-sweep: event listeners 6 5 -17% z=-0.8
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms +25% z=0.1
canvas-zoom-sweep: style recalc duration 16ms 16ms +5% z=-1.8
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 30 30 +0% z=-2.8
canvas-zoom-sweep: task duration 276ms 327ms +19% z=0.0
canvas-zoom-sweep: script duration 22ms 18ms -17% z=-3.0
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 57.4 MB 51.0 MB -11%
canvas-zoom-sweep: DOM nodes 77 -98 -227% z=-223.3
canvas-zoom-sweep: event listeners 19 -85 -545% z=-20.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 +15% z=-1.3
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 13 +18% z=-0.2
dom-widget-clipping: task duration 312ms 354ms +13% z=-0.7
dom-widget-clipping: script duration 51ms 64ms +25% z=-1.2
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 62.6 MB 62.6 MB +0%
dom-widget-clipping: DOM nodes 18 22 +22% z=-0.1
dom-widget-clipping: event listeners 0 1 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms -0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 9ms 9ms -4% z=-3.2
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 11 +5% z=-3.5
large-graph-idle: task duration 590ms 498ms -16% z=-0.8
large-graph-idle: script duration 98ms 91ms -7% z=-1.1
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 56.4 MB 59.7 MB +6%
large-graph-idle: DOM nodes -269 21 -108% z=-4.1
large-graph-idle: event listeners -191 6 -103% z=-3.3
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 20ms 20ms +2% ⚠️ z=3.4
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 70 +1% z=0.7
large-graph-pan: task duration 1028ms 1063ms +3% z=-0.4
large-graph-pan: script duration 353ms 395ms +12% z=-0.7
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 78.0 MB 78.9 MB +1%
large-graph-pan: DOM nodes 20 20 +0% z=0.6
large-graph-pan: event listeners 6 6 +0% z=1.3
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +1%
large-graph-zoom: layout duration 8ms 8ms -4%
large-graph-zoom: style recalc duration 19ms 19ms -1%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 65 +0%
large-graph-zoom: task duration 1170ms 1272ms +9%
large-graph-zoom: script duration 415ms 481ms +16%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 64.6 MB 64.3 MB -1%
large-graph-zoom: DOM nodes 14 13 -7%
large-graph-zoom: event listeners 8 8 +0%
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 9ms +4% z=-0.9
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 11 9 -23% z=-1.6
minimap-idle: task duration 459ms 482ms +5% z=-0.9
minimap-idle: script duration 84ms 86ms +3% z=-1.2
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 61.1 MB 61.2 MB +0%
minimap-idle: DOM nodes 22 17 -23% z=-1.6
minimap-idle: event listeners 6 6 +0% z=2.2
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.7
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 10ms 10ms -2% z=-2.7
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 46 -4% z=-3.3
subgraph-dom-widget-clipping: task duration 301ms 353ms +17% z=-1.4
subgraph-dom-widget-clipping: script duration 102ms 124ms +21% z=-0.7
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 63.3 MB 55.6 MB -12%
subgraph-dom-widget-clipping: DOM nodes 22 -66 -400% z=-78.8
subgraph-dom-widget-clipping: event listeners 8 -73 -1013% z=-15.3
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 10ms +22% z=-0.4
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 11 11 +0% z=0.2
subgraph-idle: task duration 394ms 349ms -12% z=-0.7
subgraph-idle: script duration 22ms 18ms -19% z=-0.8
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 53.9 MB 53.6 MB -1%
subgraph-idle: DOM nodes 22 22 +0% z=0.1
subgraph-idle: event listeners 6 4 -33% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.8
subgraph-mouse-sweep: p95 frame time 17ms 17ms +1%
subgraph-mouse-sweep: layout duration 4ms 4ms +7% z=-1.5
subgraph-mouse-sweep: style recalc duration 33ms 37ms +11% z=-1.8
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 77 +1% z=-1.9
subgraph-mouse-sweep: task duration 631ms 679ms +8% z=-1.3
subgraph-mouse-sweep: script duration 89ms 95ms +7% z=-0.9
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 49.0 MB 58.3 MB +19%
subgraph-mouse-sweep: DOM nodes 64 65 +1% z=-1.1
subgraph-mouse-sweep: event listeners 4 4 +0% 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 10ms 14ms +33%
subgraph-transition-enter: style recalc duration 23ms 28ms +21%
subgraph-transition-enter: layout count 7 4 -43%
subgraph-transition-enter: style recalc count 17 17 +0%
subgraph-transition-enter: task duration 646ms 734ms +14%
subgraph-transition-enter: script duration 24ms 30ms +24%
subgraph-transition-enter: TBT 104ms 154ms +48%
subgraph-transition-enter: heap used 75.4 MB 74.5 MB -1%
subgraph-transition-enter: DOM nodes 13833 13833 +0%
subgraph-transition-enter: event listeners 2527 2529 +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 55ms 56ms +1%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 251 +0%
viewport-pan-sweep: task duration 3183ms 3662ms +15%
viewport-pan-sweep: script duration 1001ms 1240ms +24%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 64.0 MB 64.0 MB -0%
viewport-pan-sweep: DOM nodes 22 21 -5%
viewport-pan-sweep: event listeners 20 20 +0%
vue-large-graph-idle: avg frame time 17ms 17ms -0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 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 11608ms 12881ms +11%
vue-large-graph-idle: script duration 505ms 596ms +18%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 151.9 MB 162.2 MB +7%
vue-large-graph-idle: DOM nodes -3305 -3310 +0%
vue-large-graph-idle: event listeners -16474 -16473 -0%
vue-large-graph-pan: avg frame time 17ms 17ms +2%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 19ms 18ms -7%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 65 70 +8%
vue-large-graph-pan: task duration 14033ms 14906ms +6%
vue-large-graph-pan: script duration 774ms 858ms +11%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 168.4 MB 162.3 MB -4%
vue-large-graph-pan: DOM nodes -3308 -3308 +0%
vue-large-graph-pan: event listeners -16469 -16470 +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 +24% z=-1.1
workflow-execution: style recalc duration 19ms 25ms +30% z=0.2
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 17 21 +21% z=1.3
workflow-execution: task duration 107ms 122ms +14% z=-0.0
workflow-execution: script duration 17ms 21ms +28% z=-2.6
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 61.9 MB 62.1 MB +0%
workflow-execution: DOM nodes 159 176 +10% ⚠️ z=2.1
workflow-execution: event listeners 71 69 -3% z=3.9
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-06-19T23:36:50.215Z",
  "gitSha": "7961c02628035ed25c7684c3eea66dd297410a98",
  "branch": "jaewon/fe-770-creator-lifecycle-permission",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2038.062000000025,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.008999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 354.132,
      "heapDeltaBytes": -1866336,
      "heapUsedBytes": 56429348,
      "domNodes": 22,
      "jsHeapTotalBytes": 24379392,
      "scriptDurationMs": 20.627,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2040.7780000000457,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 10.254,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 365.99399999999997,
      "heapDeltaBytes": -2014036,
      "heapUsedBytes": 56134676,
      "domNodes": 24,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 23.557000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1944.3360000000212,
      "styleRecalcs": 80,
      "styleRecalcDurationMs": 44.983999999999995,
      "layouts": 12,
      "layoutDurationMs": 3.4909999999999997,
      "taskDurationMs": 858.1959999999999,
      "heapDeltaBytes": -7406240,
      "heapUsedBytes": 51293192,
      "domNodes": 63,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 125.81600000000002,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1829.738999999904,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 35.941,
      "layouts": 12,
      "layoutDurationMs": 3.6550000000000002,
      "taskDurationMs": 743.99,
      "heapDeltaBytes": -7077736,
      "heapUsedBytes": 51327508,
      "domNodes": 58,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 122.60499999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1728.476999999998,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 15.572000000000001,
      "layouts": 6,
      "layoutDurationMs": 0.578,
      "taskDurationMs": 318.48699999999997,
      "heapDeltaBytes": 1485320,
      "heapUsedBytes": 60179888,
      "domNodes": 76,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 17.855,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1713.9789999999948,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 17.126,
      "layouts": 6,
      "layoutDurationMs": 0.7129999999999999,
      "taskDurationMs": 335.60999999999996,
      "heapDeltaBytes": -5886040,
      "heapUsedBytes": 46711044,
      "domNodes": -271,
      "jsHeapTotalBytes": 17428480,
      "scriptDurationMs": 18.391000000000002,
      "eventListeners": -188,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 591.6679999999701,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 8.704,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 362.536,
      "heapDeltaBytes": 7264704,
      "heapUsedBytes": 65647656,
      "domNodes": 22,
      "jsHeapTotalBytes": 18874368,
      "scriptDurationMs": 65.092,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 546.5970000000198,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 8.941999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 344.913,
      "heapDeltaBytes": 7256812,
      "heapUsedBytes": 65606404,
      "domNodes": 22,
      "jsHeapTotalBytes": 18874368,
      "scriptDurationMs": 62.647999999999996,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2001.2480000000323,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.451999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 511.9309999999999,
      "heapDeltaBytes": -7987848,
      "heapUsedBytes": 62201404,
      "domNodes": 22,
      "jsHeapTotalBytes": 11677696,
      "scriptDurationMs": 93.10799999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2021.7749999999342,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.38,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 484.677,
      "heapDeltaBytes": -9345692,
      "heapUsedBytes": 62979384,
      "domNodes": 20,
      "jsHeapTotalBytes": 9318400,
      "scriptDurationMs": 88.17800000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2140.2520000000322,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 19.837,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1087.638,
      "heapDeltaBytes": 10330676,
      "heapUsedBytes": 83150756,
      "domNodes": 20,
      "jsHeapTotalBytes": 10018816,
      "scriptDurationMs": 408.28600000000006,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2093.4950000000754,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 20.244,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1038.932,
      "heapDeltaBytes": 9707192,
      "heapUsedBytes": 82308500,
      "domNodes": 20,
      "jsHeapTotalBytes": 11591680,
      "scriptDurationMs": 381.209,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3093.127000000095,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 19.359,
      "layouts": 60,
      "layoutDurationMs": 7.812000000000001,
      "taskDurationMs": 1296.2150000000001,
      "heapDeltaBytes": -10633752,
      "heapUsedBytes": 58531512,
      "domNodes": 14,
      "jsHeapTotalBytes": 14213120,
      "scriptDurationMs": 488.89700000000005,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3115.1270000000295,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 18.163999999999998,
      "layouts": 60,
      "layoutDurationMs": 7.617000000000001,
      "taskDurationMs": 1247.5,
      "heapDeltaBytes": 12911436,
      "heapUsedBytes": 76257212,
      "domNodes": 12,
      "jsHeapTotalBytes": 7340032,
      "scriptDurationMs": 472.563,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2001.3300000000527,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.576999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 479.511,
      "heapDeltaBytes": -9322432,
      "heapUsedBytes": 64372748,
      "domNodes": 18,
      "jsHeapTotalBytes": 7745536,
      "scriptDurationMs": 85.64000000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 1997.0509999999422,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.05,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 485.339,
      "heapDeltaBytes": -9751384,
      "heapUsedBytes": 63897516,
      "domNodes": 16,
      "jsHeapTotalBytes": 8269824,
      "scriptDurationMs": 86.62500000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 547.3170000000209,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.963000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 360.074,
      "heapDeltaBytes": 7682808,
      "heapUsedBytes": 66343252,
      "domNodes": 20,
      "jsHeapTotalBytes": 19660800,
      "scriptDurationMs": 126.434,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 537.6909999999953,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.395000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 344.9960000000001,
      "heapDeltaBytes": 4829720,
      "heapUsedBytes": 50293796,
      "domNodes": -152,
      "jsHeapTotalBytes": 10747904,
      "scriptDurationMs": 121.61499999999998,
      "eventListeners": -152,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1990.7800000000293,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.356,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 357.034,
      "heapDeltaBytes": -2432144,
      "heapUsedBytes": 56368072,
      "domNodes": 22,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 18.452,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1990.634,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.782,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 340.881,
      "heapDeltaBytes": -2552192,
      "heapUsedBytes": 56117948,
      "domNodes": 22,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 17.76,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1710.0670000000378,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 38.058,
      "layouts": 16,
      "layoutDurationMs": 4.629,
      "taskDurationMs": 690.9369999999999,
      "heapDeltaBytes": -10677664,
      "heapUsedBytes": 48043604,
      "domNodes": 64,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 96.29400000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1674.910000000068,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 35.191,
      "layouts": 16,
      "layoutDurationMs": 3.785,
      "taskDurationMs": 666.931,
      "heapDeltaBytes": 15540240,
      "heapUsedBytes": 74213348,
      "domNodes": 65,
      "jsHeapTotalBytes": 25952256,
      "scriptDurationMs": 93.34100000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1018.7349999999924,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 28.394999999999996,
      "layouts": 4,
      "layoutDurationMs": 13.949000000000003,
      "taskDurationMs": 734.1999999999999,
      "heapDeltaBytes": 2524184,
      "heapUsedBytes": 78080896,
      "domNodes": 13833,
      "jsHeapTotalBytes": 17301504,
      "scriptDurationMs": 29.869999999999994,
      "eventListeners": 2529,
      "totalBlockingTimeMs": 154,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8161.031000000094,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 55.54,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3636.8140000000003,
      "heapDeltaBytes": -2956680,
      "heapUsedBytes": 67016000,
      "domNodes": 20,
      "jsHeapTotalBytes": 18931712,
      "scriptDurationMs": 1228.732,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8118.021999999996,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 56.214000000000006,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3686.668,
      "heapDeltaBytes": -2949872,
      "heapUsedBytes": 67177792,
      "domNodes": 22,
      "jsHeapTotalBytes": 17358848,
      "scriptDurationMs": 1250.3029999999999,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12757.903000000057,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12735.928999999998,
      "heapDeltaBytes": -30337628,
      "heapUsedBytes": 169755008,
      "domNodes": -3310,
      "jsHeapTotalBytes": 19894272,
      "scriptDurationMs": 596.0350000000001,
      "eventListeners": -16474,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13043.097999999987,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13025.794000000002,
      "heapDeltaBytes": -41065720,
      "heapUsedBytes": 170499324,
      "domNodes": -3310,
      "jsHeapTotalBytes": 22777856,
      "scriptDurationMs": 596.662,
      "eventListeners": -16472,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14904.403999999999,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.739000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14883.245999999997,
      "heapDeltaBytes": -25433808,
      "heapUsedBytes": 170283640,
      "domNodes": -3308,
      "jsHeapTotalBytes": 19632128,
      "scriptDurationMs": 862.8760000000001,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.773333333333238,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14953.83199999992,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.485000000000028,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14927.952000000001,
      "heapDeltaBytes": -41132120,
      "heapUsedBytes": 170178996,
      "domNodes": -3308,
      "jsHeapTotalBytes": 20418560,
      "scriptDurationMs": 852.466,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 469.6369999999206,
      "styleRecalcs": 24,
      "styleRecalcDurationMs": 25.992,
      "layouts": 5,
      "layoutDurationMs": 1.613,
      "taskDurationMs": 128.126,
      "heapDeltaBytes": 5576088,
      "heapUsedBytes": 65262896,
      "domNodes": 192,
      "jsHeapTotalBytes": 3145728,
      "scriptDurationMs": 21.403,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 451.7759999999953,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 23.302999999999997,
      "layouts": 5,
      "layoutDurationMs": 1.1520000000000001,
      "taskDurationMs": 116.746,
      "heapDeltaBytes": 5250760,
      "heapUsedBytes": 64922196,
      "domNodes": 159,
      "jsHeapTotalBytes": 3145728,
      "scriptDurationMs": 21.275999999999996,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

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

📊 Browser Reports
  • chromium: View Report (✅ 1651 / ❌ 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: 06/19/2026, 11:27:02 PM UTC

Links

@dante01yoon

Copy link
Copy Markdown
Collaborator Author

Option B follow-up (non-blocking) — when BE adds is_original_owner to /api/workspaces.

Current design here (Option A) derives the current-user original-owner signal from the member-list self-row (isCurrentUserOriginalOwner, matched by lowercased email) and adds an eager fetchMembers() watch in useWorkspaceUI so billing surfaces load members. Working interim; runtime-gated on cutover cloud#4359 (member-list Member.is_original_owner), fail-closed before it lands.

Preferred end-state (Option B): expose is_original_owner (current-user-relative, sibling of role) on /api/workspaces — Hunter pre-approved 2026-06-17. Benefits: no extra members fetch, no load-window flicker (lifecycle actions hidden until members load), authoritative server boolean instead of an email self-row join. When it ships:

  1. isCurrentUserOriginalOwner → read activeWorkspace.is_original_owner directly.
  2. Remove the eager fetchMembers() watch + the email self-row join.
  3. Add is_original_owner to the workspace auth/session Zod schema.

Member.is_original_owner (per-member, members-panel row-lock in #12782) stays as-is.

dante01yoon added a commit that referenced this pull request Jun 18, 2026
Owner Cancel (plan menu) + Resubscribe (panel button and the workspace popover
re-activate path) now require canManageSubscriptionLifecycle (original owner)
instead of canManageSubscription. Promoted (non-creator) owners keep manage-
payment / upgrade / top-up; they no longer see cancel/reactivate. Per the
billing-permission matrix (FE SSOT).

Stacked on the permission infra (#12829). DRAFT / do-not-merge until the BE
is_creator flag ships: with it absent the permission fails closed, which would
hide cancel/reactivate from every owner (regression).
() => {
const workspace = store.activeWorkspace
if (workspace?.type === 'team' && store.members.length === 0) {
void store.fetchMembers()

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This may be better off living in the store as an "ensureMembersLoaded", guarded for in flight duplicate calls, catch the failed request and log if failed, and with a "membersLoaded" flag instead of the .length === 0 check

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Moved into the store as ensureMembersLoaded in 8278c9d: no-ops for personal/already-loaded workspaces, dedupes in-flight calls, and catches+logs failures (leaving the workspace unloaded so a later call retries). Used a per-workspace loaded Set rather than a single membersLoaded boolean — a global flag would skip loading the new team on workspace switch.

{ immediate: true }
)

const isOriginalOwner = computed(() => store.isCurrentUserOriginalOwner)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Looks redundant, can just use store.isCurrentUserOriginalOwner

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Done in 8278c9d — inlined store.isCurrentUserOriginalOwner directly into the permissions computed.

dante01yoon added a commit that referenced this pull request Jun 18, 2026
Owner Cancel (plan menu) + Resubscribe (panel button and the workspace popover
re-activate path) now require canManageSubscriptionLifecycle (original owner)
instead of canManageSubscription. Promoted (non-creator) owners keep manage-
payment / upgrade / top-up; they no longer see cancel/reactivate. Per the
billing-permission matrix (FE SSOT).

Stacked on the permission infra (#12829). DRAFT / do-not-merge until the BE
is_creator flag ships: with it absent the permission fails closed, which would
hide cancel/reactivate from every owner (regression).
…12830)

Stacked on the permission infra #12829. Gates owner **Cancel** (plan
menu) + **Resubscribe** (panel button + workspace popover re-activate
path) on `canManageSubscriptionLifecycle` (original owner only), per the
billing-permission matrix (FE SSOT). Promoted owners keep manage-payment
/ upgrade / top-up; members get none.

**Original-owner signal (repointed).** Rebased onto the updated #12829
(`a51183ae`), so the gate now resolves from the member-list
`is_original_owner` field that the cloud cutover (Comfy-Org/cloud #4359)
ships: the store getter `isCurrentUserOriginalOwner` matches the current
user's member self-row by email, and `useWorkspaceUI` eagerly
`fetchMembers()` so billing surfaces have the roster loaded. This
replaces the earlier `is_creator`-on-`/api/workspaces` assumption — BE
standardized on a per-member `is_original_owner` instead. No
`is_creator` remains.

**Merge-gated** on cutover cloud#4359 reaching cloud main: until `GET
/api/workspace/members` returns `is_original_owner` in prod, the gate
fails closed (lifecycle actions hidden for every owner). Fail-closed =
no regression pre-deploy, but do not merge until the field is live.

**Follow-up (non-blocking).** Exposing `is_original_owner`
(current-user-relative, sibling of `role`) on `/api/workspaces` — Hunter
pre-approved 2026-06-17 — would let us read it directly and drop the
eager member fetch. Tracked on #12829 / FE-770.

Part of FE-978 (member run-lock modal shipped separately in #12786).
@dosubot dosubot Bot added size:L This PR changes 100-499 lines, ignoring generated files. and removed size:M This PR changes 30-99 lines, ignoring generated files. labels Jun 19, 2026
@vercel

vercel Bot commented Jun 19, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
comfyui-frontend-node-search-preview Error Error Jun 19, 2026 12:37am

Address review: own the team members-preload coordination in the store
instead of the composable. ensureMembersLoaded no-ops for personal /
already-loaded workspaces, dedupes in-flight calls, and logs failures so a
later call retries. Inline the redundant isCurrentUserOriginalOwner computed.
@vercel

vercel Bot commented Jun 19, 2026

Copy link
Copy Markdown

Deployment failed with the following error:

Resource is limited - try again in 24 hours (more than 100, code: "api-deployments-free-per-day").

Learn More: https://vercel.com/uy-tieu-s-projects?upgradeToPro=build-rate-limit

The watch now gates ensureMembersLoaded on activeWorkspace.type === 'team'
so personal/undefined workspaces never invoke the store loader. This keeps
consumer composables that mock the store minimally (useSubscriptionDialog)
working, while the store method stays the idempotent safe loader.
@dante01yoon

Copy link
Copy Markdown
Collaborator Author

@coderabbitai approve

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Comments resolved and changes approved.

@dante01yoon dante01yoon enabled auto-merge June 19, 2026 23:25
@dante01yoon dante01yoon added this pull request to the merge queue Jun 19, 2026
Merged via the queue into main with commit 1f759a7 Jun 19, 2026
48 of 49 checks passed
@dante01yoon dante01yoon deleted the jaewon/fe-770-creator-lifecycle-permission branch June 19, 2026 23:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cloud/1.46 Backport PRs for cloud 1.46 size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants