mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -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.
17 lines
474 B
JavaScript
17 lines
474 B
JavaScript
// Legacy LoraCard.js - now using shared ModelCard component
|
|
import {
|
|
createModelCard,
|
|
setupModelCardEventDelegation,
|
|
updateCardsForBulkMode
|
|
} from './shared/ModelCard.js';
|
|
|
|
// Re-export functions with original names for backwards compatibility
|
|
export function createLoraCard(lora) {
|
|
return createModelCard(lora, 'lora');
|
|
}
|
|
|
|
export function setupLoraCardEventDelegation() {
|
|
setupModelCardEventDelegation('lora');
|
|
}
|
|
|
|
export { updateCardsForBulkMode }; |