mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-20 07:13:51 +02:00
Fix the bug of checked checkbox would remain checked on the friends at the same position after turned to the other page (#833)
Co-authored-by: EbonCorvin <{ID}+{username}@users.noreply.github.com>
This commit is contained in:
@@ -22430,6 +22430,11 @@ speechSynthesis.getVoices();
|
||||
$app.data.friendsListSelectAllCheckbox = false;
|
||||
$app.data.friendsListBulkUnfriendMode = false;
|
||||
|
||||
$app.watch.friendsListBulkUnfriendMode = (newV) => {
|
||||
if (!newV) {
|
||||
$app.friendsListTable.data.forEach(i => delete i.$selected);
|
||||
}
|
||||
}
|
||||
$app.methods.showBulkUnfriendSelectionConfirm = function () {
|
||||
var elementsTicked = 0;
|
||||
for (var ctx of this.friendsListTable.data) {
|
||||
|
||||
Reference in New Issue
Block a user