mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
- Introduced ModelContextMenuMixin to encapsulate shared methods for Lora and Checkpoint context menus. - Updated CheckpointContextMenu to utilize the mixin for common actions and NSFW level handling. - Simplified LoraContextMenu by integrating the mixin, removing redundant methods. - Removed duplicated NSFW handling logic and centralized it in the mixin. - Adjusted import/export statements to reflect the new structure and ensure proper functionality.
4 lines
251 B
JavaScript
4 lines
251 B
JavaScript
export { LoraContextMenu } from './LoraContextMenu.js';
|
|
export { RecipeContextMenu } from './RecipeContextMenu.js';
|
|
export { CheckpointContextMenu } from './CheckpointContextMenu.js';
|
|
export { ModelContextMenuMixin } from './ModelContextMenuMixin.js'; |