Fix/mnt 23190 queries to find users not returning results (#1365)

* MNT-23190 - Added "hint:useCQ" in order for the new users to appear on the results
This commit is contained in:
Antonio Felix
2022-09-09 11:07:15 +01:00
committed by GitHub
parent d2a71d0c9f
commit 8bc3b357cf
2 changed files with 2 additions and 2 deletions

View File

@@ -309,7 +309,7 @@ function sortByName(a, b)
function findUsers(searchTerm, maxResults, results)
{
var personRefs = people.getPeople(searchTerm, maxResults, "lastName", true);
var personRefs = people.getPeople(searchTerm+ " [hint:useCQ]", maxResults, "lastName", true);
// create person object for each result
for each(var personRef in personRefs)