sillytavern 1.8.2 → 1.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1234,7 +1234,7 @@ function filterGroupMembers() {
|
|
|
1234
1234
|
$("#rm_group_add_members .group_member").removeClass('hiddenBySearch');
|
|
1235
1235
|
} else {
|
|
1236
1236
|
$("#rm_group_add_members .group_member").each(function () {
|
|
1237
|
-
const isValidSearch = $(this).
|
|
1237
|
+
const isValidSearch = $(this).find(".ch_name").text().toLowerCase().includes(searchValue);
|
|
1238
1238
|
$(this).toggleClass('hiddenBySearch', !isValidSearch);
|
|
1239
1239
|
});
|
|
1240
1240
|
}
|
package/src/poe-client.js
CHANGED
|
@@ -312,7 +312,7 @@ function logObjectStructure(obj, indent = 0, depth = Infinity) {
|
|
|
312
312
|
class Client {
|
|
313
313
|
gql_url = "https://poe.com/api/gql_POST";
|
|
314
314
|
gql_recv_url = "https://poe.com/api/receive_POST";
|
|
315
|
-
home_url = "https://poe.com";
|
|
315
|
+
home_url = "https://poe.com/Sage";
|
|
316
316
|
settings_url = "https://poe.com/api/settings";
|
|
317
317
|
|
|
318
318
|
formkey = "";
|