mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 23:25:43 -03:00
feat(trigger-words): increase maximum word limit from 30 to 100, fixes #660
This commit is contained in:
@@ -499,7 +499,7 @@ function addNewTriggerWord(word) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Validation: Check length
|
// Validation: Check length
|
||||||
if (word.split(/\s+/).length > 30) {
|
if (word.split(/\s+/).length > 100) {
|
||||||
showToast('toast.triggerWords.tooLong', {}, 'error');
|
showToast('toast.triggerWords.tooLong', {}, 'error');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user