Skip to content

feat(manager): add Try Update button for nightly packs#7610

Merged
christian-byrne merged 8 commits intomainfrom
feat/nightly-pack-update
Dec 19, 2025
Merged

feat(manager): add Try Update button for nightly packs#7610
christian-byrne merged 8 commits intomainfrom
feat/nightly-pack-update

Conversation

@Myestery
Copy link
Contributor

@Myestery Myestery commented Dec 18, 2025

Summary

  • Add "Try Update" button in InfoPanel for installed nightly packs
  • Allows users to pull latest changes from repository for nightly versions
  • Nightly updates cannot be auto-detected (git hashes vs semver), so users trigger manually

Test plan

  • Install a nightly version of any pack
  • Select the pack in Manager
  • Verify "Try Update" button appears in InfoPanel
  • Click "Try Update" and verify update request is sent
Screen.Recording.2025-12-18.at.06.44.51.mov

┆Issue is synchronized with this Notion page by Unito

Add computed property to detect when a nightly pack can be updated.
Nightly packs can always "try update" since we cannot compare git
hashes to determine if an update is actually available.
New button component for triggering nightly pack updates.
Shows "Try Update" with tooltip explaining the feature.
Sends update request with version: 'nightly' to pull latest
changes from the repository.
Show "Try Update" button in InfoPanel when viewing an installed,
enabled nightly pack. Uses slot override on InfoPanelHeader.
Add tryUpdate and tryUpdateTooltip translation keys.
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 18, 2025

Important

Review skipped

Auto reviews are limited based on label configuration.

🚫 Review skipped — only excluded labels are configured. (1)
  • backport

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough

Walkthrough

Adds manual nightly update UI and logic: new PackTryUpdateButton component, batch/nightly update controls, refactors usePackUpdateStatus to accept reactive inputs and expose canTryNightlyUpdate, selection helpers for nightly packs, and two new English localization strings.

Changes

Cohort / File(s) Summary
Localization
src/locales/en/main.json
Added manager.update.tryUpdate ("Try Update") and manager.update.tryUpdateTooltip (tooltip text for manual nightly updates).
Pack update status composable
src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
Signature now accepts a MaybeRefOrGetter source; uses unwrapped nodePack computed, reads isPackEnabled from store, computes isInstalled/installedVersion/latestVersion from nodePack.value, and exposes new canTryNightlyUpdate boolean.
Packs selection composable
src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
Added nightlyPacks (installed + enabled + non-semver/nightly) and hasNightlyPacks computed properties; uses semver valid check; exposed in return.
New button component
src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
New Vue component with nodePack and size props; manages isUpdating state; tryUpdate() validates id, calls managerStore.updatePack with nightly version, clears store on success, logs errors, and toggles spinner/label.
Manager UI updates
src/workbench/extensions/manager/components/manager/PackVersionBadge.vue, src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue, src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
PackVersionBadge now passes a getter () => nodePack into usePackUpdateStatus; InfoPanel imports and conditionally renders PackTryUpdateButton and PackUninstallButton based on canTryNightlyUpdate; InfoPanelMultiItem adds batch nightly-update button, isUpdatingSelected state, updateSelectedNightlyPacks workflow, spinner, and dynamic labels.

Sequence Diagram(s)

sequenceDiagram
    actor User
    participant UI as PackTryUpdateButton
    participant Store as managerStore
    participant Console as Logger

    User->>UI: Click "Try Update"
    activate UI
    UI->>UI: Validate nodePack.id
    alt id missing
        UI->>Console: Log error
        UI-->>User: No-op
    else id present
        UI->>UI: isUpdating = true (show spinner)
        UI->>Store: updatePack(id, version: "nightly")
        activate Store
        alt success
            Store-->>UI: success
            UI->>Store: clear store
        else failure
            Store-->>UI: error
            UI->>Console: Log error
        end
        deactivate Store
        UI->>UI: isUpdating = false (hide spinner)
        UI-->>User: Updated state
    end
    deactivate UI
Loading
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feat/nightly-pack-update

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

❤️ Share

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

Use MaybeRefOrGetter pattern to ensure the composable reacts when
nodePack prop changes. Fixes reactivity issue where Try Update and
Uninstall buttons wouldn't update correctly when switching between
packs in InfoPanel.
@Myestery Myestery marked this pull request as ready for review December 18, 2025 05:40
@dosubot dosubot bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Dec 18, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

📜 Review details

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fa1719f and 2da4399.

📒 Files selected for processing (5)
  • src/locales/en/main.json (1 hunks)
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue (1 hunks)
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue (1 hunks)
  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue (3 hunks)
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts (2 hunks)
🧰 Additional context used
📓 Path-based instructions (11)
src/**/*.vue

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.vue: Use the Vue 3 Composition API instead of the Options API when writing Vue components (exception: when overriding or extending PrimeVue components for compatibility)
Use setup() function for component logic
Utilize ref and reactive for reactive state
Implement computed properties with computed()
Use watch and watchEffect for side effects
Implement lifecycle hooks with onMounted, onUpdated, etc.
Utilize provide/inject for dependency injection
Use vue 3.5 style of default prop declaration
Use Tailwind CSS for styling
Implement proper props and emits definitions
Utilize Vue 3's Teleport component when needed
Use Suspense for async components
Follow Vue 3 style guide and naming conventions

src/**/*.vue: Vue 3 SFCs must use Composition API only - no Options API
Use <script setup lang="ts"> for component logic
Use Tailwind 4 utility classes for styling - avoid <style> blocks
Use cn() utility from @/utils/tailwindUtil to merge Tailwind class names - never use :class="[]" syntax
Never use the dark: Tailwind variant - use semantic values from style.css theme instead (e.g., bg-node-component-surface)
Use Vue 3.5+ TypeScript style default prop declaration with reactive destructuring - prefer useModel to prop/emit pairs, do not use withDefaults
Do not import Vue macros unnecessarily
Use vue-i18n in composition API for string literals - place translation entries in src/locales/en/main.json
Implement proper props and emits definitions in Vue components
Utilize Vue 3's Teleport component when needed
Use Suspense for async components
Avoid new usage of PrimeVue components

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/*.{vue,ts}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.{vue,ts}: Leverage VueUse functions for performance-enhancing styles
Implement proper error handling
Use vue-i18n in composition API for any string literals. Place new translation entries in src/locales/en/main.json

src/**/*.{vue,ts}: Avoid using ref and watch together - use computed instead if possible
Do not add ref if a prop would suffice; do not add computed if the ref/prop directly would work; use watch only when computed won't accomplish the goal
Leverage VueUse functions for performance-enhancing styles

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/*.{ts,tsx,vue}: Sanitize HTML with DOMPurify to prevent XSS attacks
Avoid using @ts-expect-error; use proper TypeScript types instead
Use es-toolkit for utility functions instead of other utility libraries
Implement proper TypeScript types throughout the codebase

src/**/*.{ts,tsx,vue}: ESLint rules: Vue + TS rules, no floating promises, unused imports disallowed, i18n raw text restrictions in templates
Use es-toolkit for utility functions
Avoid mutable state - prefer immutability and assignment at point of declaration
Never use any type - use proper TypeScript types
Never use as any type assertions - fix the underlying type issue

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/{composables,components}/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Clean up subscriptions in state management to prevent memory leaks

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/*.{vue,ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Follow Vue 3 composition API style guide

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/{components,composables}/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Use vue-i18n for ALL user-facing strings by adding them to src/locales/en/main.json

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/*.{js,ts,tsx,vue}

📄 CodeRabbit inference engine (AGENTS.md)

Use TypeScript exclusively - no new JavaScript files

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/*.{ts,tsx,vue,js}

📄 CodeRabbit inference engine (AGENTS.md)

src/**/*.{ts,tsx,vue,js}: Indent with 2 spaces, use single quotes, no trailing semicolons, line width 80 - see .prettierrc
Sort and group imports by plugin, run pnpm format before committing

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
src/**/*.ts

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.ts: Use es-toolkit for utility functions
Use TypeScript for type safety

src/**/*.ts: Extract complex type definitions that are inlined in multiple related places - name them for reuse
Minimize the surface area (exported values) of each module and composable
Favor pure functions, especially testable ones

Files:

  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
src/**/{services,composables}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/{services,composables}/**/*.{ts,tsx}: Use api.apiURL() for backend endpoints instead of constructing URLs directly
Use api.fileURL() for static file access instead of constructing URLs directly

Files:

  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
src/**/*.{ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

Do not use function expressions - use function declarations instead when possible

Files:

  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
🧠 Learnings (12)
📚 Learning: 2025-12-09T03:49:52.828Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 6300
File: src/platform/updates/components/WhatsNewPopup.vue:5-13
Timestamp: 2025-12-09T03:49:52.828Z
Learning: In Vue files across the ComfyUI_frontend repo, when a button is needed, prefer the repo's common button components from src/components/button/ (IconButton.vue, TextButton.vue, IconTextButton.vue) over plain HTML <button> elements. These components wrap PrimeVue with the project’s design system styling. Use only the common button components for consistency and theming, and import them from src/components/button/ as needed.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.vue : Replace PrimeVue TabMenu component with Tabs without panels

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
📚 Learning: 2025-12-17T01:01:03.609Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-12-17T01:01:03.609Z
Learning: Applies to src/**/*.vue : Avoid new usage of PrimeVue components

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.vue : Replace PrimeVue Steps component with Stepper without panels

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
📚 Learning: 2025-12-09T21:40:12.361Z
Learnt from: benceruleanlu
Repo: Comfy-Org/ComfyUI_frontend PR: 7297
File: src/components/actionbar/ComfyActionbar.vue:33-43
Timestamp: 2025-12-09T21:40:12.361Z
Learning: In Vue single-file components, allow inline Tailwind CSS class strings for static classes and avoid extracting them into computed properties solely for readability. Prefer keeping static class names inline for simplicity and performance. For dynamic or conditional classes, use Vue bindings (e.g., :class) to compose classes.

Applies to all Vue files in the repository (e.g., src/**/*.vue) where Tailwind utilities are used for static styling.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
📚 Learning: 2025-12-16T22:26:49.463Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7537
File: src/components/ui/button/Button.vue:17-17
Timestamp: 2025-12-16T22:26:49.463Z
Learning: In Vue 3.5+ with <script setup>, when using defineProps<Props>() with partial destructuring (e.g., const { as = 'button', class: customClass = '' } = defineProps<Props>() ), props that are not destructured (e.g., variant, size) stay accessible by name in the template scope. This pattern is valid: you can destructure only a subset of props for convenience while referencing the remaining props directly in template expressions. Apply this guideline to Vue components across the codebase (all .vue files).

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
📚 Learning: 2025-12-11T12:25:15.470Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7358
File: src/components/dialog/content/signin/SignUpForm.vue:45-54
Timestamp: 2025-12-11T12:25:15.470Z
Learning: This repository uses CI automation to format code (pnpm format). Do not include manual formatting suggestions in code reviews for Comfy-Org/ComfyUI_frontend. If formatting issues are detected, rely on the CI formatter or re-run pnpm format. Focus reviews on correctness, readability, performance, accessibility, and maintainability rather than style formatting.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
📚 Learning: 2025-12-18T02:07:38.870Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7598
File: src/components/sidebar/tabs/AssetsSidebarTab.vue:131-131
Timestamp: 2025-12-18T02:07:38.870Z
Learning: Tailwind CSS v4 safe utilities (e.g., items-center-safe, justify-*-safe, place-*-safe) are allowed in Vue components under src/ and in story files. Do not flag these specific safe variants as invalid when reviewing code in src/**/*.vue or related stories.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue
  • src/workbench/extensions/manager/components/manager/PackVersionBadge.vue
  • src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
📚 Learning: 2025-12-09T04:35:43.971Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 6300
File: src/locales/en/main.json:774-780
Timestamp: 2025-12-09T04:35:43.971Z
Learning: In the Comfy-Org/ComfyUI_frontend repository, locale files other than `src/locales/en/main.json` are generated automatically on every release. Developers only need to add English (en) key/values in `src/locales/en/main.json` when making PRs; manual updates to other locale files (fr, ja, ko, ru, zh, zh-TW, es, ar, tr, etc.) are not required and should not be suggested in reviews.

Applied to files:

  • src/locales/en/main.json
📚 Learning: 2025-12-09T03:39:54.501Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7169
File: src/platform/remote/comfyui/jobs/jobTypes.ts:1-107
Timestamp: 2025-12-09T03:39:54.501Z
Learning: In the ComfyUI_frontend project, Zod is on v3.x. Do not suggest Zod v4 standalone validators (z.uuid, z.ulid, z.cuid2, z.nanoid) until an upgrade to Zod 4 is performed. When reviewing TypeScript files (e.g., src/platform/remote/comfyui/jobs/jobTypes.ts) validate against Zod 3 capabilities and avoid introducing v4-specific features; flag any proposal to upgrade or incorporate v4-only validators and propose staying with compatible 3.x patterns.

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
📚 Learning: 2025-12-13T11:03:11.264Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7416
File: src/stores/imagePreviewStore.ts:5-7
Timestamp: 2025-12-13T11:03:11.264Z
Learning: In the ComfyUI_frontend repository, lint rules require keeping 'import type' statements separate from non-type imports, even if importing from the same module. Do not suggest consolidating them into a single import statement. Ensure type imports remain on their own line (import type { ... } from 'module') and regular imports stay on separate lines.

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
📚 Learning: 2025-12-17T00:40:09.635Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7537
File: src/components/ui/button/Button.stories.ts:45-55
Timestamp: 2025-12-17T00:40:09.635Z
Learning: Prefer pure function declarations over function expressions (e.g., use function foo() { ... } instead of const foo = () => { ... }) for pure functions in the repository. Function declarations are more functional-leaning, offer better hoisting clarity, and can improve readability and tooling consistency. Apply this guideline across TypeScript files in Comfy-Org/ComfyUI_frontend, including story and UI component code, except where a function expression is semantically required (e.g., callbacks, higher-order functions with closures).

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts
🔇 Additional comments (7)
src/workbench/extensions/manager/composables/nodePack/usePackUpdateStatus.ts (2)

41-48: Well-documented computed property for nightly updates.

The JSDoc comment clearly explains the rationale for canTryNightlyUpdate - that git hashes cannot be compared for version checking, so manual updates are always allowed. The logic correctly requires the pack to be installed, enabled, and nightly.


18-19: No action needed. Both isPackEnabled and isPackInstalled are properly implemented to handle undefined input via explicit typing and defensive boolean coercion (!!packName), which safely returns false when the ID is undefined.

Likely an incorrect or invalid review comment.

src/workbench/extensions/manager/components/manager/PackVersionBadge.vue (1)

66-66: Correct reactivity pattern for composable input.

Wrapping nodePack in a getter () => nodePack ensures the composable properly tracks prop changes. This aligns with the updated usePackUpdateStatus signature that accepts MaybeRefOrGetter<Node>.

src/locales/en/main.json (1)

298-299: Localization entries added correctly.

The new translation keys tryUpdate and tryUpdateTooltip are properly placed under the manager namespace with clear, user-friendly text. The tooltip effectively communicates why manual updates are needed for nightly versions.

src/workbench/extensions/manager/components/manager/infoPanel/InfoPanel.vue (2)

112-113: Composable usage follows the updated pattern.

Using usePackUpdateStatus(() => nodePack) with a getter correctly maintains reactivity when the nodePack prop changes.


8-15: Conditional nightly update UI integrated correctly.

The slot content properly renders both PackTryUpdateButton and PackUninstallButton when canTryNightlyUpdate is true, providing nightly pack users with manual update and uninstall options. The #install-button slot is correctly defined in InfoPanelHeader and the implementation follows all coding guidelines.

src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue (1)

1-16: Component follows repository conventions.

Good use of IconTextButton from the common button components, proper tooltip positioning, and conditional spinner display. The component correctly uses v-bind="$attrs" for attribute passthrough.

Comment on lines +40 to +58
async function tryUpdate() {
if (!nodePack.id) {
console.warn('Pack missing required id:', nodePack)
return
}

isUpdating.value = true
try {
await managerStore.updatePack.call({
id: nodePack.id,
version: 'nightly'
})
managerStore.updatePack.clear()
} catch (error) {
console.error('Nightly update failed:', error)
} finally {
isUpdating.value = false
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

🧹 Nitpick | 🔵 Trivial

Error handling could provide user feedback.

The tryUpdate function catches errors but only logs to console. Consider showing a toast notification to inform users when the update fails.

🔎 Suggested improvement for user feedback:
+import { useToast } from 'primevue/usetoast'
+
 const { t } = useI18n()
 const managerStore = useComfyManagerStore()
+const toast = useToast()

 async function tryUpdate() {
   if (!nodePack.id) {
     console.warn('Pack missing required id:', nodePack)
     return
   }

   isUpdating.value = true
   try {
     await managerStore.updatePack.call({
       id: nodePack.id,
       version: 'nightly'
     })
     managerStore.updatePack.clear()
   } catch (error) {
     console.error('Nightly update failed:', error)
+    toast.add({
+      severity: 'error',
+      summary: t('g.error'),
+      detail: String(error),
+      life: 5000
+    })
   } finally {
     isUpdating.value = false
   }
 }

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In
src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
around lines 40 to 58, the tryUpdate function currently only logs errors to the
console when the nightly update fails; update the error handling to present user
feedback by invoking the app's toast/notification mechanism (e.g., existing
useToast/$toast or Notifications service) with a clear failure message and
optional error details, keep the isUpdating flag toggled as-is, and ensure
managerStore.updatePack.clear() still runs on success; include a success toast
on completion if desired.

Comment on lines +60 to +62
const computedLabel = computed(() =>
isUpdating.value ? t('g.updating') : t('manager.tryUpdate')
)
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Localization key g.updating expects an {id} parameter.

Looking at main.json line 192, "updating": "Updating {id}" requires an id parameter. The current usage t('g.updating') will show "Updating {id}" literally instead of the pack name.

🔎 Fix the interpolation:
 const computedLabel = computed(() =>
-  isUpdating.value ? t('g.updating') : t('manager.tryUpdate')
+  isUpdating.value ? t('g.updating', { id: nodePack.name || nodePack.id }) : t('manager.tryUpdate')
 )
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const computedLabel = computed(() =>
isUpdating.value ? t('g.updating') : t('manager.tryUpdate')
)
const computedLabel = computed(() =>
isUpdating.value ? t('g.updating', { id: nodePack.name || nodePack.id }) : t('manager.tryUpdate')
)
🤖 Prompt for AI Agents
In
src/workbench/extensions/manager/components/manager/button/PackTryUpdateButton.vue
around lines 60 to 62, the localization key 'g.updating' requires an {id}
parameter but the code calls t('g.updating') with no params; update the
computedLabel to pass the pack identifier (e.g. pack.name or pack.id) when
isUpdating is true — e.g. call t('g.updating', { id: pack.name || pack.id || ''
}) — so the translation interpolates the pack name and provide a safe fallback
for the id value.

- Add nightlyPacks and hasNightlyPacks computed properties to usePacksSelection
- Show "Update Selected" button in multi-selection panel when nightly packs selected
- Batch update loops through all selected nightly packs sequentially
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

📜 Review details

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2da4399 and 7339abf.

📒 Files selected for processing (2)
  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue (4 hunks)
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts (2 hunks)
🧰 Additional context used
📓 Path-based instructions (11)
src/**/*.vue

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.vue: Use the Vue 3 Composition API instead of the Options API when writing Vue components (exception: when overriding or extending PrimeVue components for compatibility)
Use setup() function for component logic
Utilize ref and reactive for reactive state
Implement computed properties with computed()
Use watch and watchEffect for side effects
Implement lifecycle hooks with onMounted, onUpdated, etc.
Utilize provide/inject for dependency injection
Use vue 3.5 style of default prop declaration
Use Tailwind CSS for styling
Implement proper props and emits definitions
Utilize Vue 3's Teleport component when needed
Use Suspense for async components
Follow Vue 3 style guide and naming conventions

src/**/*.vue: Vue 3 SFCs must use Composition API only - no Options API
Use <script setup lang="ts"> for component logic
Use Tailwind 4 utility classes for styling - avoid <style> blocks
Use cn() utility from @/utils/tailwindUtil to merge Tailwind class names - never use :class="[]" syntax
Never use the dark: Tailwind variant - use semantic values from style.css theme instead (e.g., bg-node-component-surface)
Use Vue 3.5+ TypeScript style default prop declaration with reactive destructuring - prefer useModel to prop/emit pairs, do not use withDefaults
Do not import Vue macros unnecessarily
Use vue-i18n in composition API for string literals - place translation entries in src/locales/en/main.json
Implement proper props and emits definitions in Vue components
Utilize Vue 3's Teleport component when needed
Use Suspense for async components
Avoid new usage of PrimeVue components

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
src/**/*.{vue,ts}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.{vue,ts}: Leverage VueUse functions for performance-enhancing styles
Implement proper error handling
Use vue-i18n in composition API for any string literals. Place new translation entries in src/locales/en/main.json

src/**/*.{vue,ts}: Avoid using ref and watch together - use computed instead if possible
Do not add ref if a prop would suffice; do not add computed if the ref/prop directly would work; use watch only when computed won't accomplish the goal
Leverage VueUse functions for performance-enhancing styles

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/*.{ts,tsx,vue}: Sanitize HTML with DOMPurify to prevent XSS attacks
Avoid using @ts-expect-error; use proper TypeScript types instead
Use es-toolkit for utility functions instead of other utility libraries
Implement proper TypeScript types throughout the codebase

src/**/*.{ts,tsx,vue}: ESLint rules: Vue + TS rules, no floating promises, unused imports disallowed, i18n raw text restrictions in templates
Use es-toolkit for utility functions
Avoid mutable state - prefer immutability and assignment at point of declaration
Never use any type - use proper TypeScript types
Never use as any type assertions - fix the underlying type issue

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/{composables,components}/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Clean up subscriptions in state management to prevent memory leaks

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/*.{vue,ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Follow Vue 3 composition API style guide

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/{components,composables}/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Use vue-i18n for ALL user-facing strings by adding them to src/locales/en/main.json

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/*.{js,ts,tsx,vue}

📄 CodeRabbit inference engine (AGENTS.md)

Use TypeScript exclusively - no new JavaScript files

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/*.{ts,tsx,vue,js}

📄 CodeRabbit inference engine (AGENTS.md)

src/**/*.{ts,tsx,vue,js}: Indent with 2 spaces, use single quotes, no trailing semicolons, line width 80 - see .prettierrc
Sort and group imports by plugin, run pnpm format before committing

Files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/*.ts

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.ts: Use es-toolkit for utility functions
Use TypeScript for type safety

src/**/*.ts: Extract complex type definitions that are inlined in multiple related places - name them for reuse
Minimize the surface area (exported values) of each module and composable
Favor pure functions, especially testable ones

Files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/{services,composables}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/{services,composables}/**/*.{ts,tsx}: Use api.apiURL() for backend endpoints instead of constructing URLs directly
Use api.fileURL() for static file access instead of constructing URLs directly

Files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
src/**/*.{ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

Do not use function expressions - use function declarations instead when possible

Files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
🧠 Learnings (20)
📚 Learning: 2025-12-17T01:01:03.609Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-12-17T01:01:03.609Z
Learning: Applies to src/**/*.vue : Use `<script setup lang="ts">` for component logic

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-11-24T19:47:02.860Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: .github/copilot-instructions.md:0-0
Timestamp: 2025-11-24T19:47:02.860Z
Learning: Applies to src/**/*.{vue,ts} : Leverage VueUse functions for performance-enhancing styles

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.vue : Use ref/reactive for state management in Vue 3 Composition API

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.vue : Use setup() function in Vue 3 Composition API

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-11-24T19:47:02.860Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: .github/copilot-instructions.md:0-0
Timestamp: 2025-11-24T19:47:02.860Z
Learning: Applies to src/**/*.vue : Utilize ref and reactive for reactive state

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-09T03:49:52.828Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 6300
File: src/platform/updates/components/WhatsNewPopup.vue:5-13
Timestamp: 2025-12-09T03:49:52.828Z
Learning: In Vue files across the ComfyUI_frontend repo, when a button is needed, prefer the repo's common button components from src/components/button/ (IconButton.vue, TextButton.vue, IconTextButton.vue) over plain HTML <button> elements. These components wrap PrimeVue with the project’s design system styling. Use only the common button components for consistency and theming, and import them from src/components/button/ as needed.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-12-17T01:01:03.609Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-12-17T01:01:03.609Z
Learning: Applies to src/**/*.vue : Use Suspense for async components

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.{vue,ts,js} : Use existing VueUse composables (such as useElementHover) instead of manually managing event listeners

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-12-09T21:40:12.361Z
Learnt from: benceruleanlu
Repo: Comfy-Org/ComfyUI_frontend PR: 7297
File: src/components/actionbar/ComfyActionbar.vue:33-43
Timestamp: 2025-12-09T21:40:12.361Z
Learning: In Vue single-file components, allow inline Tailwind CSS class strings for static classes and avoid extracting them into computed properties solely for readability. Prefer keeping static class names inline for simplicity and performance. For dynamic or conditional classes, use Vue bindings (e.g., :class) to compose classes.

Applies to all Vue files in the repository (e.g., src/**/*.vue) where Tailwind utilities are used for static styling.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-12-16T22:26:49.463Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7537
File: src/components/ui/button/Button.vue:17-17
Timestamp: 2025-12-16T22:26:49.463Z
Learning: In Vue 3.5+ with <script setup>, when using defineProps<Props>() with partial destructuring (e.g., const { as = 'button', class: customClass = '' } = defineProps<Props>() ), props that are not destructured (e.g., variant, size) stay accessible by name in the template scope. This pattern is valid: you can destructure only a subset of props for convenience while referencing the remaining props directly in template expressions. Apply this guideline to Vue components across the codebase (all .vue files).

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-12-11T12:25:15.470Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7358
File: src/components/dialog/content/signin/SignUpForm.vue:45-54
Timestamp: 2025-12-11T12:25:15.470Z
Learning: This repository uses CI automation to format code (pnpm format). Do not include manual formatting suggestions in code reviews for Comfy-Org/ComfyUI_frontend. If formatting issues are detected, rely on the CI formatter or re-run pnpm format. Focus reviews on correctness, readability, performance, accessibility, and maintainability rather than style formatting.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-18T02:07:38.870Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7598
File: src/components/sidebar/tabs/AssetsSidebarTab.vue:131-131
Timestamp: 2025-12-18T02:07:38.870Z
Learning: Tailwind CSS v4 safe utilities (e.g., items-center-safe, justify-*-safe, place-*-safe) are allowed in Vue components under src/ and in story files. Do not flag these specific safe variants as invalid when reviewing code in src/**/*.vue or related stories.

Applied to files:

  • src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.vue : Implement computed() for derived state in Vue 3 Composition API

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-17T01:01:03.609Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-12-17T01:01:03.609Z
Learning: Applies to src/**/*.{vue,ts} : Do not add `ref` if a prop would suffice; do not add `computed` if the ref/prop directly would work; use `watch` only when `computed` won't accomplish the goal

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-17T01:01:03.609Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-12-17T01:01:03.609Z
Learning: Applies to src/**/*.{vue,ts} : Avoid using `ref` and `watch` together - use `computed` instead if possible

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-11-24T19:47:45.616Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/components/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:45.616Z
Learning: Applies to src/components/**/*.vue : Extract complex conditionals to computed properties

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-11-24T19:47:02.860Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: .github/copilot-instructions.md:0-0
Timestamp: 2025-11-24T19:47:02.860Z
Learning: Applies to src/**/*.vue : Implement computed properties with computed()

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-09T03:39:54.501Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7169
File: src/platform/remote/comfyui/jobs/jobTypes.ts:1-107
Timestamp: 2025-12-09T03:39:54.501Z
Learning: In the ComfyUI_frontend project, Zod is on v3.x. Do not suggest Zod v4 standalone validators (z.uuid, z.ulid, z.cuid2, z.nanoid) until an upgrade to Zod 4 is performed. When reviewing TypeScript files (e.g., src/platform/remote/comfyui/jobs/jobTypes.ts) validate against Zod 3 capabilities and avoid introducing v4-specific features; flag any proposal to upgrade or incorporate v4-only validators and propose staying with compatible 3.x patterns.

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-13T11:03:11.264Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7416
File: src/stores/imagePreviewStore.ts:5-7
Timestamp: 2025-12-13T11:03:11.264Z
Learning: In the ComfyUI_frontend repository, lint rules require keeping 'import type' statements separate from non-type imports, even if importing from the same module. Do not suggest consolidating them into a single import statement. Ensure type imports remain on their own line (import type { ... } from 'module') and regular imports stay on separate lines.

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
📚 Learning: 2025-12-17T00:40:09.635Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7537
File: src/components/ui/button/Button.stories.ts:45-55
Timestamp: 2025-12-17T00:40:09.635Z
Learning: Prefer pure function declarations over function expressions (e.g., use function foo() { ... } instead of const foo = () => { ... }) for pure functions in the repository. Function declarations are more functional-leaning, offer better hoisting clarity, and can improve readability and tooling consistency. Apply this guideline across TypeScript files in Comfy-Org/ComfyUI_frontend, including story and UI component code, except where a function expression is semantically required (e.g., callbacks, higher-order functions with closures).

Applied to files:

  • src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts
🔇 Additional comments (5)
src/workbench/extensions/manager/composables/nodePack/usePacksSelection.ts (3)

1-1: LGTM on the semver import.

Using valid from semver is the correct approach to distinguish nightly (git hash) versions from semantic versions.


45-57: Well-structured nightly pack detection logic.

The computed property correctly identifies nightly packs by:

  1. Filtering for valid pack IDs
  2. Checking the installed version is non-semver (nightly/git hash)
  3. Ensuring the pack is enabled

The JSDoc comment clearly explains the criteria. Good use of computed per guidelines.


59-59: Clean derived state.

hasNightlyPacks is appropriately derived from nightlyPacks using computed, following the guideline to use computed for derived state rather than ref+watch.

src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue (2)

21-41: Good UI composition for batch nightly updates.

The template correctly:

  • Conditionally shows the update button only when nightly packs exist
  • Uses the common IconTextButton component with proper tooltip
  • Shows a loading spinner during updates
  • Disables the button while updating to prevent double-clicks
  • Uses i18n for all user-facing strings

137-139: Good use of computed for dynamic label.

The updateSelectedLabel computed property appropriately derives the button label from the updating state, following the guideline to use computed for derived state.

Comment on lines +117 to +135
async function updateSelectedNightlyPacks() {
if (nightlyPacks.value.length === 0) return

isUpdatingSelected.value = true
try {
for (const pack of nightlyPacks.value) {
if (!pack.id) continue
await managerStore.updatePack.call({
id: pack.id,
version: 'nightly'
})
}
managerStore.updatePack.clear()
} catch (error) {
console.error('Batch nightly update failed:', error)
} finally {
isUpdatingSelected.value = false
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Move updatePack.clear() to the finally block for consistent cleanup.

If an error occurs during the batch update loop, clear() is never called, which could leave stale state in the manager store. Moving it to finally ensures cleanup happens regardless of success or failure.

🔎 Apply this diff to ensure consistent cleanup:
 async function updateSelectedNightlyPacks() {
   if (nightlyPacks.value.length === 0) return

   isUpdatingSelected.value = true
   try {
     for (const pack of nightlyPacks.value) {
       if (!pack.id) continue
       await managerStore.updatePack.call({
         id: pack.id,
         version: 'nightly'
       })
     }
-    managerStore.updatePack.clear()
   } catch (error) {
     console.error('Batch nightly update failed:', error)
   } finally {
+    managerStore.updatePack.clear()
     isUpdatingSelected.value = false
   }
 }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
async function updateSelectedNightlyPacks() {
if (nightlyPacks.value.length === 0) return
isUpdatingSelected.value = true
try {
for (const pack of nightlyPacks.value) {
if (!pack.id) continue
await managerStore.updatePack.call({
id: pack.id,
version: 'nightly'
})
}
managerStore.updatePack.clear()
} catch (error) {
console.error('Batch nightly update failed:', error)
} finally {
isUpdatingSelected.value = false
}
}
async function updateSelectedNightlyPacks() {
if (nightlyPacks.value.length === 0) return
isUpdatingSelected.value = true
try {
for (const pack of nightlyPacks.value) {
if (!pack.id) continue
await managerStore.updatePack.call({
id: pack.id,
version: 'nightly'
})
}
} catch (error) {
console.error('Batch nightly update failed:', error)
} finally {
managerStore.updatePack.clear()
isUpdatingSelected.value = false
}
}
🤖 Prompt for AI Agents
In
src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
around lines 117 to 135, the managerStore.updatePack.clear() call is inside the
try block so it won't run if an error occurs; move the clear() call into the
finally block (after isUpdatingSelected.value is reset) so it always runs
regardless of success or failure, and remove the original clear() from the try
block to avoid duplicate calls.

Comment on lines +130 to +132
} catch (error) {
console.error('Batch nightly update failed:', error)
} finally {
Copy link
Contributor

Choose a reason for hiding this comment

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

🧹 Nitpick | 🔵 Trivial

Consider surfacing batch update errors to the user.

Currently, errors are only logged to the console. Users may not realize an update failed. Consider using a toast notification or similar feedback mechanism to inform users when a batch update fails.

🤖 Prompt for AI Agents
In
src/workbench/extensions/manager/components/manager/infoPanel/InfoPanelMultiItem.vue
around lines 130 to 132, the catch block only logs batch update failures to the
console so users aren't notified; update the catch to also surface the error to
the UI by invoking the app's notification mechanism (for example emit an event,
call the global/toast service like this.$toast.error(...) or dispatch a
notification action to the store) with a concise user-facing message and the
error details, while retaining the console.error for debugging.

@github-actions
Copy link

github-actions bot commented Dec 18, 2025

🎭 Playwright Test Results

🕵🏻 No test results found

⏰ Completed at: 12/18/2025, 09:54:59 PM UTC

📊 Test Reports by Browser

  • chromium: Deployment failed
  • chromium-2x: Deployment failed
  • chromium-0.5x: Deployment failed
  • mobile-chrome: Deployment failed

🎉 Click on the links above to view detailed test results for each browser configuration.

@github-actions
Copy link

github-actions bot commented Dec 18, 2025

🎨 Storybook Build Status

Build completed successfully!

⏰ Completed at: 12/18/2025, 09:41:59 PM UTC

🔗 Links


🎉 Your Storybook is ready for review!

@github-actions
Copy link

github-actions bot commented Dec 18, 2025

Bundle Size Report

Summary

  • Raw size: 16.6 MB baseline 16.6 MB — 🔴 +5.84 kB
  • Gzip: 3.37 MB baseline 3.37 MB — 🔴 +1.01 kB
  • Brotli: 2.6 MB baseline 2.6 MB — 🔴 +381 B
  • Bundles: 99 current • 99 baseline • 55 added / 55 removed

Category Glance
App Entry Points 🔴 +5.82 kB (3.21 MB) · Vendor & Third-Party 🔴 +19 B (8.46 MB) · Other ⚪ 0 B (3.44 MB) · Graph Workspace ⚪ 0 B (996 kB) · Panels & Settings ⚪ 0 B (297 kB) · UI Components ⚪ 0 B (184 kB) · + 3 more

Per-category breakdown
App Entry Points — 3.21 MB (baseline 3.21 MB) • 🔴 +5.82 kB

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-CnMAHYrP.js (new) 2.98 MB 🔴 +2.98 MB 🔴 +629 kB 🔴 +478 kB
assets/index-DVpFzEPA.js (removed) 2.98 MB 🟢 -2.98 MB 🟢 -628 kB 🟢 -478 kB
assets/index-B4tLGOH5.js (new) 227 kB 🔴 +227 kB 🔴 +48.5 kB 🔴 +39.8 kB
assets/index-DG5WEZ8S.js (removed) 227 kB 🟢 -227 kB 🟢 -48.5 kB 🟢 -39.9 kB
assets/index-DXVmWUzW.js (removed) 345 B 🟢 -345 B 🟢 -244 B 🟢 -229 B
assets/index-Mm5qw6ED.js (new) 345 B 🔴 +345 B 🔴 +246 B 🔴 +233 B

Status: 3 added / 3 removed

Graph Workspace — 996 kB (baseline 996 kB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-lr6Q75J0.js (removed) 996 kB 🟢 -996 kB 🟢 -195 kB 🟢 -148 kB
assets/GraphView-oQTPpKgH.js (new) 996 kB 🔴 +996 kB 🔴 +195 kB 🔴 +148 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/UserSelectView-DrrSDlTa.js (new) 6.54 kB 🔴 +6.54 kB 🔴 +2.14 kB 🔴 +1.89 kB
assets/UserSelectView-p4CQM008.js (removed) 6.54 kB 🟢 -6.54 kB 🟢 -2.14 kB 🟢 -1.89 kB

Status: 1 added / 1 removed

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/LegacyCreditsPanel-BDBLCVV8.js (removed) 21.4 kB 🟢 -21.4 kB 🟢 -5.16 kB 🟢 -4.51 kB
assets/LegacyCreditsPanel-CNKmXG4T.js (new) 21.4 kB 🔴 +21.4 kB 🔴 +5.16 kB 🔴 +4.51 kB
assets/KeybindingPanel-5FEvCSEz.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.42 kB 🟢 -3.01 kB
assets/KeybindingPanel-C1C9YNtM.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.42 kB 🔴 +3.02 kB
assets/ExtensionPanel-CeAwoj41.js (new) 10.8 kB 🔴 +10.8 kB 🔴 +2.57 kB 🔴 +2.24 kB
assets/ExtensionPanel-CVs6Lw4P.js (removed) 10.8 kB 🟢 -10.8 kB 🟢 -2.57 kB 🟢 -2.25 kB
assets/AboutPanel-DBYgg2Us.js (removed) 9.16 kB 🟢 -9.16 kB 🟢 -2.46 kB 🟢 -2.21 kB
assets/AboutPanel-vWmDu0Gf.js (new) 9.16 kB 🔴 +9.16 kB 🔴 +2.46 kB 🔴 +2.21 kB
assets/ServerConfigPanel-CIMNCsk2.js (removed) 7.07 kB 🟢 -7.07 kB 🟢 -1.98 kB 🟢 -1.76 kB
assets/ServerConfigPanel-DW-_uuQ0.js (new) 7.07 kB 🔴 +7.07 kB 🔴 +1.98 kB 🔴 +1.76 kB
assets/UserPanel-BNhyniv3.js (removed) 6.23 kB 🟢 -6.23 kB 🟢 -1.72 kB 🟢 -1.5 kB
assets/UserPanel-CUYugEW7.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +1.72 kB 🔴 +1.5 kB
assets/settings-BhbWhsRg.js 101 B 101 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-BvFz-TmQ.js 33.1 kB 33.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-BxYnTA2y.js 21.5 kB 21.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-C6bMjAne.js 27.1 kB 27.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-C7Yhp7H7.js 24 kB 24 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-CsnOn8G0.js 25.7 kB 25.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-D5BGNZ7M.js 24.8 kB 24.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-D7k3huHm.js 25 kB 25 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DamkILzl.js 26.4 kB 26.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-s1k0gw1Y.js 20.9 kB 20.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 6 added / 6 removed

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/Load3D.vue_vue_type_script_setup_true_lang-DWbJNTzU.js (new) 53.5 kB 🔴 +53.5 kB 🔴 +8.45 kB 🔴 +7.25 kB
assets/Load3D.vue_vue_type_script_setup_true_lang-sPS63egj.js (removed) 53.5 kB 🟢 -53.5 kB 🟢 -8.45 kB 🟢 -7.26 kB
assets/WidgetSelect.vue_vue_type_script_setup_true_lang-C37Vk5m7.js (removed) 48.8 kB 🟢 -48.8 kB 🟢 -10.5 kB 🟢 -9.14 kB
assets/WidgetSelect.vue_vue_type_script_setup_true_lang-D5DhEOhy.js (new) 48.8 kB 🔴 +48.8 kB 🔴 +10.5 kB 🔴 +9.14 kB
assets/LazyImage.vue_vue_type_script_setup_true_lang-aP_Yvosq.js (new) 48.4 kB 🔴 +48.4 kB 🔴 +10.7 kB 🔴 +9.35 kB
assets/LazyImage.vue_vue_type_script_setup_true_lang-BBAAtvZf.js (removed) 48.4 kB 🟢 -48.4 kB 🟢 -10.7 kB 🟢 -9.35 kB
assets/WidgetInputNumber.vue_vue_type_script_setup_true_lang-6Zt2P3SB.js (new) 14.3 kB 🔴 +14.3 kB 🔴 +3.73 kB 🔴 +3.29 kB
assets/WidgetInputNumber.vue_vue_type_script_setup_true_lang-CMaFjbiz.js (removed) 14.3 kB 🟢 -14.3 kB 🟢 -3.73 kB 🟢 -3.29 kB
assets/ComfyQueueButton-CQBUPink.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.49 kB 🔴 +2.22 kB
assets/ComfyQueueButton-IRM0o-Z5.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.49 kB 🟢 -2.22 kB
assets/WidgetWithControl.vue_vue_type_script_setup_true_lang-CnzyH73-.js (removed) 3.68 kB 🟢 -3.68 kB 🟢 -1.45 kB 🟢 -1.31 kB
assets/WidgetWithControl.vue_vue_type_script_setup_true_lang-DLy_tdDM.js (new) 3.68 kB 🔴 +3.68 kB 🔴 +1.45 kB 🔴 +1.3 kB
assets/WidgetLayoutField.vue_vue_type_script_setup_true_lang-B2bAsTTl.js (new) 2.14 kB 🔴 +2.14 kB 🔴 +890 B 🔴 +761 B
assets/WidgetLayoutField.vue_vue_type_script_setup_true_lang-Cae5Ocg3.js (removed) 2.14 kB 🟢 -2.14 kB 🟢 -889 B 🟢 -769 B
assets/WidgetButton-B5FcXt9_.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -928 B 🟢 -814 B
assets/WidgetButton-z3dAsplW.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +928 B 🔴 +813 B
assets/UserAvatar.vue_vue_type_script_setup_true_lang-Bumg4_L2.js (new) 1.34 kB 🔴 +1.34 kB 🔴 +685 B 🔴 +592 B
assets/UserAvatar.vue_vue_type_script_setup_true_lang-C6S4PBEs.js (removed) 1.34 kB 🟢 -1.34 kB 🟢 -686 B 🟢 -594 B
assets/MediaTitle.vue_vue_type_script_setup_true_lang-DWjtgTp8.js (new) 897 B 🔴 +897 B 🔴 +504 B 🔴 +430 B
assets/MediaTitle.vue_vue_type_script_setup_true_lang-R9I8s2xt.js (removed) 897 B 🟢 -897 B 🟢 -504 B 🟢 -441 B

Status: 10 added / 10 removed

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

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/keybindingService-CFczQL_W.js (new) 7.51 kB 🔴 +7.51 kB 🔴 +1.83 kB 🔴 +1.57 kB
assets/keybindingService-DSLpC7E6.js (removed) 7.51 kB 🟢 -7.51 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/serverConfigStore-7JI8VFS2.js (new) 2.83 kB 🔴 +2.83 kB 🔴 +909 B 🔴 +793 B
assets/serverConfigStore-DDOxHQs5.js (removed) 2.83 kB 🟢 -2.83 kB 🟢 -908 B 🟢 -793 B
assets/audioService-B2i_FaWb.js (removed) 2.2 kB 🟢 -2.2 kB 🟢 -959 B 🟢 -823 B
assets/audioService-vH6BRa87.js (new) 2.2 kB 🔴 +2.2 kB 🔴 +962 B 🔴 +828 B

Status: 3 added / 3 removed

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/audioUtils-BIPYJUm6.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -652 B 🟢 -551 B
assets/audioUtils-DSNvnZn_.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +651 B 🔴 +544 B
assets/nodeFilterUtil-CXKCRJ-m.js 460 B 460 B ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 1 added / 1 removed

Vendor & Third-Party — 8.46 MB (baseline 8.46 MB) • 🔴 +19 B

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-other-Cf7iqkoX.js (new) 3.86 MB 🔴 +3.86 MB 🔴 +839 kB 🔴 +672 kB
assets/vendor-other-N5ffP4jf.js (removed) 3.86 MB 🟢 -3.86 MB 🟢 -839 kB 🟢 -672 kB
assets/vendor-primevue-BAx-x20c.js (removed) 1.96 MB 🟢 -1.96 MB 🟢 -334 kB 🟢 -202 kB
assets/vendor-primevue-DZ--Ysu_.js (new) 1.96 MB 🔴 +1.96 MB 🔴 +334 kB 🔴 +202 kB
assets/vendor-chart-4Lxb_aRy.js (removed) 452 kB 🟢 -452 kB 🟢 -99 kB 🟢 -81 kB
assets/vendor-chart-DaR9dw3X.js (new) 452 kB 🔴 +452 kB 🔴 +99 kB 🔴 +81 kB
assets/vendor-tiptap-C1NB2Q_L.js (new) 232 kB 🔴 +232 kB 🔴 +45.7 kB 🔴 +37.7 kB
assets/vendor-tiptap-DMBnJfDx.js (removed) 232 kB 🟢 -232 kB 🟢 -45.7 kB 🟢 -37.7 kB
assets/vendor-vue-DSfeuQOV.js (new) 160 kB 🔴 +160 kB 🔴 +37.2 kB 🔴 +31.4 kB
assets/vendor-vue-DyquAs8-.js (removed) 160 kB 🟢 -160 kB 🟢 -37.2 kB 🟢 -31.4 kB
assets/vendor-three-C1LfRdh4.js 1.37 MB 1.37 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-xterm-BF8peZ5_.js 420 kB 420 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 5 added / 5 removed

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SubscriptionRequiredDialogContent-Dke_IQC3.js (new) 28.1 kB 🔴 +28.1 kB 🔴 +6.34 kB 🔴 +5.5 kB
assets/SubscriptionRequiredDialogContent-Gd4DM-Md.js (removed) 28.1 kB 🟢 -28.1 kB 🟢 -6.34 kB 🟢 -5.49 kB
assets/WidgetRecordAudio-C8ziBL6u.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +5.23 kB 🔴 +4.63 kB
assets/WidgetRecordAudio-Ccw85LSK.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -5.23 kB 🟢 -4.63 kB
assets/AudioPreviewPlayer-C5B6-fVq.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.37 kB 🔴 +3.01 kB
assets/AudioPreviewPlayer-D1y4Moey.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.37 kB 🟢 -3.01 kB
assets/ValueControlPopover-DSSFzsid.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.7 kB 🟢 -1.52 kB
assets/ValueControlPopover-DUxxcLMb.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.7 kB 🔴 +1.51 kB
assets/WidgetGalleria-D8e1lnY3.js (new) 4.1 kB 🔴 +4.1 kB 🔴 +1.44 kB 🔴 +1.3 kB
assets/WidgetGalleria-Dkd01XHF.js (removed) 4.1 kB 🟢 -4.1 kB 🟢 -1.45 kB 🟢 -1.3 kB
assets/WidgetColorPicker-B96iKuGo.js (removed) 3.41 kB 🟢 -3.41 kB 🟢 -1.38 kB 🟢 -1.23 kB
assets/WidgetColorPicker-Dahp-rl7.js (new) 3.41 kB 🔴 +3.41 kB 🔴 +1.38 kB 🔴 +1.23 kB
assets/WidgetTextarea-CFlcvyiZ.js (new) 3.08 kB 🔴 +3.08 kB 🔴 +1.21 kB 🔴 +1.08 kB
assets/WidgetTextarea-Cg1s60YM.js (removed) 3.08 kB 🟢 -3.08 kB 🟢 -1.21 kB 🟢 -1.09 kB
assets/WidgetMarkdown-D1Z-umrd.js (new) 3.08 kB 🔴 +3.08 kB 🔴 +1.28 kB 🔴 +1.12 kB
assets/WidgetMarkdown-qy2-6hAB.js (removed) 3.08 kB 🟢 -3.08 kB 🟢 -1.28 kB 🟢 -1.13 kB
assets/WidgetAudioUI-Bnm7LGv5.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -1.19 kB 🟢 -1.07 kB
assets/WidgetAudioUI-Dehk-Fbx.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +1.18 kB 🔴 +1.07 kB
assets/MediaVideoTop-BVdg2b8C.js (new) 2.65 kB 🔴 +2.65 kB 🔴 +1.02 kB 🔴 +869 B
assets/MediaVideoTop-D2Oavg0V.js (removed) 2.65 kB 🟢 -2.65 kB 🟢 -1.01 kB 🟢 -867 B
assets/WidgetChart-54cAzoul.js (removed) 2.48 kB 🟢 -2.48 kB 🟢 -929 B 🟢 -817 B
assets/WidgetChart-DT6E_SOn.js (new) 2.48 kB 🔴 +2.48 kB 🔴 +931 B 🔴 +812 B
assets/WidgetImageCompare-BB9nVmFq.js (new) 2.21 kB 🔴 +2.21 kB 🔴 +748 B 🔴 +664 B
assets/WidgetImageCompare-bTic3jrs.js (removed) 2.21 kB 🟢 -2.21 kB 🟢 -748 B 🟢 -661 B
assets/WidgetInputText-BTtMxls2.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -917 B 🟢 -853 B
assets/WidgetInputText-CyyzE1yg.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +919 B 🔴 +847 B
assets/WidgetToggleSwitch-Dl-LZcmJ.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +832 B 🔴 +734 B
assets/WidgetToggleSwitch-Dy0xKFFE.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -833 B 🟢 -734 B
assets/MediaImageTop-BXa-oKEc.js (new) 1.75 kB 🔴 +1.75 kB 🔴 +841 B 🔴 +719 B
assets/MediaImageTop-cYYPK99g.js (removed) 1.75 kB 🟢 -1.75 kB 🟢 -842 B 🟢 -713 B
assets/MediaImageBottom-CEtGgyWN.js (removed) 1.55 kB 🟢 -1.55 kB 🟢 -734 B 🟢 -643 B
assets/MediaImageBottom-D8XsATVp.js (new) 1.55 kB 🔴 +1.55 kB 🔴 +732 B 🔴 +639 B
assets/MediaAudioBottom-BfHJs09T.js (removed) 1.51 kB 🟢 -1.51 kB 🟢 -731 B 🟢 -644 B
assets/MediaAudioBottom-DBGF18ah.js (new) 1.51 kB 🔴 +1.51 kB 🔴 +730 B 🔴 +646 B
assets/Media3DBottom-Bbdrs1we.js (removed) 1.5 kB 🟢 -1.5 kB 🟢 -729 B 🟢 -645 B
assets/Media3DBottom-DZdcnsYz.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +728 B 🔴 +648 B
assets/MediaVideoBottom-0tJe5OU-.js (removed) 1.5 kB 🟢 -1.5 kB 🟢 -728 B 🟢 -643 B
assets/MediaVideoBottom-CuD3DnnV.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +727 B 🔴 +647 B
assets/Media3DTop-1gsW14sy.js (removed) 1.49 kB 🟢 -1.49 kB 🟢 -763 B 🟢 -652 B
assets/Media3DTop-BUwvi6Cc.js (new) 1.49 kB 🔴 +1.49 kB 🔴 +760 B 🔴 +654 B
assets/MediaAudioTop-DbG-lp_Y.js (removed) 1.46 kB 🟢 -1.46 kB 🟢 -740 B 🟢 -613 B
assets/MediaAudioTop-Dr0afgCA.js (new) 1.46 kB 🔴 +1.46 kB 🔴 +740 B 🔴 +619 B
assets/WidgetSelect-CaqbYtTT.js (new) 733 B 🔴 +733 B 🔴 +360 B 🔴 +327 B
assets/WidgetSelect-D7zSfc6E.js (removed) 733 B 🟢 -733 B 🟢 -362 B 🟢 -321 B
assets/WidgetInputNumber-DMpWJ3PN.js (removed) 673 B 🟢 -673 B 🟢 -347 B 🟢 -295 B
assets/WidgetInputNumber-IrPB0RHL.js (new) 673 B 🔴 +673 B 🔴 +348 B 🔴 +296 B
assets/Load3D-BBWa1H0u.js (new) 424 B 🔴 +424 B 🔴 +271 B 🔴 +230 B
assets/Load3D-DVyY8i38.js (removed) 424 B 🟢 -424 B 🟢 -266 B 🟢 -230 B
assets/WidgetLegacy-q3PaGawI.js (new) 364 B 🔴 +364 B 🔴 +237 B 🔴 +195 B
assets/WidgetLegacy-w1TH4t2k.js (removed) 364 B 🟢 -364 B 🟢 -237 B 🟢 -193 B
assets/commands-BWp4HdfU.js 101 B 101 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CcfGaui5.js 14.4 kB 14.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CisfgZf5.js 13.7 kB 13.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CkU12Foh.js 13 kB 13 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CoH2DJa6.js 14.2 kB 14.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-COSt-Bjx.js 14.9 kB 14.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DalfIW5f.js 15.9 kB 15.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DfTl0eCm.js 13.5 kB 13.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DwSJL865.js 13.7 kB 13.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-Zxyx15Vd.js 12.8 kB 12.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BDhxs-bB.js 79.9 kB 79.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BtXVDFw6.js 84.7 kB 84.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Buv6RhU4.js 82.4 kB 82.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CgJ6zvJL.js 97.2 kB 97.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CI9qb0E5.js 112 kB 112 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Cu4LqtW0.js 81.6 kB 81.6 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Cw9RZWRY.js 89 B 89 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Dm19QY4N.js 92.2 kB 92.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Tihe0h_r.js 71.3 kB 71.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-wPWMutMw.js 70.4 kB 70.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-1Vh3MCrN.js 240 kB 240 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-aW9En70v.js 260 kB 260 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BIckSVgU.js 273 kB 273 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BiYpVi7D.js 263 kB 263 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-Bw_Jitw_.js 101 B 101 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CCEXtYfM.js 243 kB 243 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CvmVDWYd.js 323 kB 323 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-D_wreoPJ.js 267 kB 267 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-Dz-0ZIBN.js 297 kB 297 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-VZsNmhG7.js 264 kB 264 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/widgetPropFilter-BIbGSUAt.js 1.28 kB 1.28 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 25 added / 25 removed

@christian-byrne christian-byrne added needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch core/1.35 labels Dec 19, 2025
@christian-byrne christian-byrne merged commit 8d37e48 into main Dec 19, 2025
16 of 28 checks passed
@christian-byrne christian-byrne deleted the feat/nightly-pack-update branch December 19, 2025 04:45
github-actions bot pushed a commit that referenced this pull request Dec 19, 2025
## Summary
- Add "Try Update" button in InfoPanel for installed nightly packs
- Allows users to pull latest changes from repository for nightly
versions
- Nightly updates cannot be auto-detected (git hashes vs semver), so
users trigger manually

## Test plan
- [x] Install a nightly version of any pack
- [x] Select the pack in Manager
- [x] Verify "Try Update" button appears in InfoPanel
- [x] Click "Try Update" and verify update request is sent




https://github.com/user-attachments/assets/87443eb2-adc6-4d1c-afc9-171d301cca92


┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-7610-feat-manager-add-Try-Update-button-for-nightly-packs-2cd6d73d36508167adcbc07c6a07938c)
by [Unito](https://www.unito.io)
@comfy-pr-bot
Copy link
Member

@Myestery Successfully backported to #7635

@github-actions github-actions bot removed the needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch label Dec 19, 2025
christian-byrne pushed a commit that referenced this pull request Dec 20, 2025
… packs (#7635)

Backport of #7610 to `core/1.35`

Automatically created by backport workflow.

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-7635-backport-core-1-35-feat-manager-add-Try-Update-button-for-nightly-packs-2ce6d73d36508135a070e17689cee5e7)
by [Unito](https://www.unito.io)

Co-authored-by: Johnpaul Chiwetelu <49923152+Myestery@users.noreply.github.com>
Yourz pushed a commit that referenced this pull request Dec 24, 2025
## Summary
- Add "Try Update" button in InfoPanel for installed nightly packs
- Allows users to pull latest changes from repository for nightly
versions
- Nightly updates cannot be auto-detected (git hashes vs semver), so
users trigger manually

## Test plan
- [x] Install a nightly version of any pack
- [x] Select the pack in Manager
- [x] Verify "Try Update" button appears in InfoPanel
- [x] Click "Try Update" and verify update request is sent




https://github.com/user-attachments/assets/87443eb2-adc6-4d1c-afc9-171d301cca92


┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-7610-feat-manager-add-Try-Update-button-for-nightly-packs-2cd6d73d36508167adcbc07c6a07938c)
by [Unito](https://www.unito.io)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants