Remove user dialog avatar sorting

This commit is contained in:
Natsumi
2022-05-12 05:33:19 +12:00
parent ff31815dd5
commit 3e04c00eae
2 changed files with 41 additions and 35 deletions

View File

@@ -10251,6 +10251,9 @@ speechSynthesis.getVoices();
if (!this.searchAvatarFilterRemote) {
this.searchAvatarFilterRemote = 'all';
}
if (this.searchAvatarFilterRemote !== 'local') {
this.searchAvatarSort = 'name';
}
var avatars = new Map();
var query = this.searchText.toUpperCase();
if (!query) {
@@ -13462,6 +13465,8 @@ speechSynthesis.getVoices();
}
});
}
this.userDialog.avatarSorting = 'name';
this.userDialog.avatarReleaseStatus = 'all';
}
this.sortUserDialogAvatars(this.userDialog.avatars);
};