Files
ComfyUI-Lora-Manager/static/js/components/checkpointModal/index.js
Will Miao fcfc868e57 feat: Move LoRA related components to shared directory for consistency
- Added PresetTags.js to handle LoRA model preset parameter tags.
- Introduced RecipeTab.js for managing recipes associated with LoRA models.
- Created TriggerWords.js to manage trigger word functionality for LoRA models.
- Implemented utility functions in utils.js for general model modal operations.
2025-07-22 16:00:04 +08:00

11 lines
348 B
JavaScript

/**
* CheckpointModal - Main entry point
*
* Legacy CheckpointModal - now using shared ModelModal component
*/
import { showModelModal } from '../shared/ModelModal.js';
// Re-export function with original name for backwards compatibility
export function showCheckpointModal(checkpoint) {
return showModelModal(checkpoint, 'checkpoint');
}