WI editor visual QoL
This commit is contained in:
parent
a02504381a
commit
10264367aa
|
@ -3854,7 +3854,7 @@
|
|||
</span>
|
||||
</small>
|
||||
</label>
|
||||
<textarea class="text_pole" name="content" rows="4" data-i18n="[placeholder]What this keyword should mean to the AI, sent verbatim" placeholder="What this keyword should mean to the AI, sent verbatim"></textarea>
|
||||
<textarea class="text_pole" name="content" rows="8" data-i18n="[placeholder]What this keyword should mean to the AI, sent verbatim" placeholder="What this keyword should mean to the AI, sent verbatim"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="world_entry_thin_controls commentContainer">
|
||||
|
|
|
@ -587,7 +587,7 @@ function getWorldEntry(name, data, entry) {
|
|||
setOriginalDataValue(data, uid, "keys", data.entries[uid].key);
|
||||
saveWorldInfo(name, data);
|
||||
});
|
||||
keyInput.val(entry.key.join(",")).trigger("input");
|
||||
keyInput.val(entry.key.join(", ")).trigger("input");
|
||||
//initScrollHeight(keyInput);
|
||||
|
||||
// logic AND/NOT
|
||||
|
@ -708,7 +708,7 @@ function getWorldEntry(name, data, entry) {
|
|||
saveWorldInfo(name, data);
|
||||
});
|
||||
|
||||
keySecondaryInput.val(entry.keysecondary.join(",")).trigger("input");
|
||||
keySecondaryInput.val(entry.keysecondary.join(", ")).trigger("input");
|
||||
initScrollHeight(keySecondaryInput);
|
||||
|
||||
// comment
|
||||
|
|
Loading…
Reference in New Issue