mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
- 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.
14 lines
451 B
JavaScript
14 lines
451 B
JavaScript
// Legacy CheckpointCard.js - now using shared ModelCard component
|
|
import {
|
|
createModelCard,
|
|
setupModelCardEventDelegation
|
|
} from './shared/ModelCard.js';
|
|
|
|
// Re-export functions with original names for backwards compatibility
|
|
export function createCheckpointCard(checkpoint) {
|
|
return createModelCard(checkpoint, 'checkpoint');
|
|
}
|
|
|
|
export function setupCheckpointCardEventDelegation() {
|
|
setupModelCardEventDelegation('checkpoint');
|
|
} |