Skip to content

Commit

Permalink
Revert the ability to search a report by participant accountID
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangzinh committed Jul 7, 2023
1 parent 0ee7dfa commit 48c44e4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/libs/OptionsListUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,6 @@ function getParticipantNames(personalDetailList) {
// `_.contains(Array, value)` for an Array with n members.
const participantNames = new Set();
_.each(personalDetailList, (participant) => {
if (participant.accountID) {
participantNames.add(participant.accountID.toString());
}
if (participant.login) {
participantNames.add(participant.login.toLowerCase());
}
Expand Down

0 comments on commit 48c44e4

Please sign in to comment.