Skip to content

Commit

Permalink
Fix search suggestions display issue followup
Browse files Browse the repository at this point in the history
  • Loading branch information
wikumChamith committed Sep 30, 2024
1 parent 8c80024 commit 4898725
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function CreateCallback(options) {

// wrap each result in a span tag (needed?)
textShown = "<span class='autocompleteresult'>" + textShown + "</span>";
personNameEscaped = $j('<div/>').text(person.personName).html();
personNameEscaped = $j('<div/>').text(personName).html();
personIdEscaped = $j('<div/>').text(person.personId).html();
return { label: textShown, value: personNameEscaped, id: personIdEscaped, object: person };
}; }
Expand Down

0 comments on commit 4898725

Please sign in to comment.