Peterson implemented the 'No user found' message in the autocomplete#3855
Merged
one-community merged 3 commits intoMay 14, 2026
Merged
Conversation
✅ Deploy Preview for highestgoodnetwork-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
shashankm9
approved these changes
Aug 7, 2025
Namitha7070
approved these changes
Aug 7, 2025
Contributor
Namitha7070
left a comment
There was a problem hiding this comment.
Verified that the message "No user found" is correctly displayed upon entering a non-existent user name.
Untitled.video.-.Made.with.Clipchamp.4.mp4
sohailuddinsyed
previously approved these changes
Aug 10, 2025
Naveen-Kumar-Reddy-27
approved these changes
Aug 15, 2025
Contributor
|
This feature works as intended and the code is great https://www.loom.com/share/b4d9dc2972ae4f6aad5a02fc688922cc?sid=c30347d4-73bc-4e63-a902-380aebfedc10 |
beblicarl
previously approved these changes
Aug 22, 2025
Contributor
|
Autocomplete displays 'No user found' when a user does not exist in the drop down in Permissions Management page. PR3855.mp4 |
AbhishekSrikanth
approved these changes
Sep 6, 2025
…age-in-autocomplete-2
1cf6dcc
|
Member
|
Thank you all, merging! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.










Description
On the Permission Management page, there is a modal called 'Manage User Permissions' that contains an input field with an autocomplete feature. As the user types in the input, the autocomplete displays user names that match the typed text. However, if the user enters a non-existent user name, no message is shown in the autocomplete. This PR was opened to add a message indicating that no user was found when this situation occurs.
Related PRS (if any):
None.
Main changes explained:
The UserPermissionsPopUp.jsx component has been modified to fix the bug.
How to test:
npm installand...to run this PR locallyScreenshots or videos of changes:
Before my fix
After my fix
Note:
None