mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 22:36:05 +02:00
Fix quick search history
This commit is contained in:
+4
-3
@@ -4098,7 +4098,8 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
|
|
||||||
$app.methods.quickSearchRemoteMethod = function (query) {
|
$app.methods.quickSearchRemoteMethod = function (query) {
|
||||||
if (!query) {
|
if (!query) {
|
||||||
this.quickSearchItems = [];
|
this.quickSearchItems = this.quickSearchUserHistory();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const results = [];
|
const results = [];
|
||||||
@@ -4194,7 +4195,6 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
} else {
|
} else {
|
||||||
this.showUserDialog(value);
|
this.showUserDialog(value);
|
||||||
}
|
}
|
||||||
this.quickSearchUserHistory();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -4218,7 +4218,7 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.quickSearchItems = results;
|
return results;
|
||||||
};
|
};
|
||||||
|
|
||||||
// #endregion
|
// #endregion
|
||||||
@@ -8973,6 +8973,7 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
});
|
});
|
||||||
this.showUserDialogHistory.delete(userId);
|
this.showUserDialogHistory.delete(userId);
|
||||||
this.showUserDialogHistory.add(userId);
|
this.showUserDialogHistory.add(userId);
|
||||||
|
this.quickSearchItems = this.quickSearchUserHistory();
|
||||||
};
|
};
|
||||||
|
|
||||||
$app.methods.applyUserDialogLocation = function (updateInstanceOccupants) {
|
$app.methods.applyUserDialogLocation = function (updateInstanceOccupants) {
|
||||||
|
|||||||
Reference in New Issue
Block a user