Rearrange WI block

This commit is contained in:
SillyLossy
2023-04-29 19:18:58 +03:00
parent 6f1193f057
commit da68255a25
3 changed files with 109 additions and 134 deletions

View File

@@ -2446,7 +2446,7 @@ function resultCheckStatusNovel() {
async function renameCharacter() {
const oldAvatar = characters[this_chid].avatar;
const newValue = await callPopup('New name:', 'input', characters[this_chid].name);
const newValue = await callPopup('<h3>New name:</h3>', 'input', characters[this_chid].name);
if (newValue && newValue !== characters[this_chid].name) {
const body = JSON.stringify({ avatar_url: oldAvatar, new_name: newValue });