mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Check that char.list has any filters before applying hidden block.
This commit is contained in:
@ -1363,7 +1363,7 @@ async function printCharacters(fullRefresh = false) {
|
||||
}
|
||||
|
||||
const hidden = (characters.length + groups.length) - displayCount;
|
||||
if (hidden > 0) {
|
||||
if (hidden > 0 && entitiesFilter.hasAnyFilter()) {
|
||||
$(listId).append(getHiddenBlock(hidden));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user