feat: Increase maximum allowed trigger words from 10 to 30. Fixes https://github.com/willmiao/ComfyUI-Lora-Manager/issues/109

This commit is contained in:
Will Miao
2025-04-18 11:25:41 +08:00
parent 2ed6dbb344
commit 061660d47a

View File

@@ -235,8 +235,8 @@ function addNewTriggerWord(word) {
// Validation: Check total number
const currentTags = tagsContainer.querySelectorAll('.trigger-word-tag');
if (currentTags.length >= 10) {
showToast('Maximum 10 trigger words allowed', 'error');
if (currentTags.length >= 30) {
showToast('Maximum 30 trigger words allowed', 'error');
return;
}