-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented Search Feature in Filter Menu #5068
Implemented Search Feature in Filter Menu #5068
Conversation
Welcome!
Hello there, congrats on your first PR! We're excited to have you contributing to this project. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left a comment @rathodvinod5 otherwise lgtm 👍
@@ -25,31 +55,50 @@ export const ObjectFilterDropdownFilterSelect = () => { | |||
|
|||
const setHotkeyScope = useSetHotkeyScope(); | |||
|
|||
const debouncedSetSearchFilter = useDebouncedCallback(setSearchText, 100, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need a debounce for this as this is not querying/computing anything, let's not slow down the experience when it's not needed 👍
LGTM otherwise, I will update this part in another PR 👍 |
@Weiko thanks for the update. |
I will try to remove the debounce effect in next PR. |
Closes #4367