Skip to content

Commit

Permalink
surface deactivated users in the search input
Browse files Browse the repository at this point in the history
  • Loading branch information
BenCookie95 committed Dec 9, 2024
1 parent 5699618 commit 7d08136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/users_input/users_input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class UsersInput extends React.Component {
};

debouncedSearchProfiles = debounce((term, callback) => {
this.props.actions.searchProfiles(term).then(({data}) => {
this.props.actions.searchProfiles(term, {allow_inactive: true}).then(({data}) => {
callback(data);
}).catch(() => {
// eslint-disable-next-line no-console
Expand Down

0 comments on commit 7d08136

Please sign in to comment.