mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix character renaming. Workaround for Node 20 bug. Adjust spec v2 fields
This commit is contained in:
@ -954,7 +954,7 @@ function select_group_chats(groupId, skipAnimation) {
|
||||
template.find(".avatar img").attr("title", character.avatar);
|
||||
template.find(".ch_name").text(character.name);
|
||||
template.attr("chid", characters.indexOf(character));
|
||||
template.addClass(character.fav == 'true' ? 'is_fav' : '');
|
||||
template.toggleClass('is_fav', character.fav || character.fav == 'true');
|
||||
|
||||
if (!group) {
|
||||
template.find('[data-action="speak"]').hide();
|
||||
|
Reference in New Issue
Block a user