From b9820f631b1d760e42f2f62a895e71f58082fe82 Mon Sep 17 00:00:00 2001 From: Wilfred Chen <46327334+wilfredchen@users.noreply.github.com> Date: Fri, 21 Apr 2023 23:34:11 +0800 Subject: [PATCH] reset the yellow fav star icon to white when selecting into a character --- public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/script.js b/public/script.js index 7719ca45d..7d06136c5 100644 --- a/public/script.js +++ b/public/script.js @@ -637,7 +637,6 @@ function updateSoftPromptsList(soft_prompts) { function printCharacters() { //console.log('printCharacters() entered'); - $("#rm_print_characters_block").empty(); //console.log('printCharacters() -- sees '+characters.length+' characters.'); characters.forEach(function (item, i, arr) { @@ -3839,6 +3838,7 @@ $(document).ready(function () { select_selected_character(this_chid); } $("#character_search_bar").val("").trigger("input"); + $("#filter_by_fav").css("color","#FFFFFF"); //reset the fav to white. });