autotag list option saved in the correct format. see #289
This commit is contained in:
parent
6b0543b154
commit
593a0d5db0
1 changed files with 2 additions and 2 deletions
|
|
@ -242,9 +242,9 @@ function saveOptions(e) {
|
||||||
break;
|
break;
|
||||||
case 'textarea':
|
case 'textarea':
|
||||||
if(element.id === 'add_tags_auto_uselist_list') {
|
if(element.id === 'add_tags_auto_uselist_list') {
|
||||||
element.value = normalizeStringList(element.value);
|
element.value = normalizeStringList(element.value, 1);
|
||||||
}
|
}
|
||||||
options[element.id] = element.value.trim();
|
options[element.id] = normalizeStringList(element.value);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
console.error("[ThunderAI] Unhandled input type:", element.type);
|
console.error("[ThunderAI] Unhandled input type:", element.type);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue