Describe your issue
Currently, table search functionality requires users to type a query and then press Enter before the search is executed.
Instead, the search should automatically run once the minimum required number of characters (2 characters) has been entered into the search field. Requiring an additional Enter key press creates unnecessary friction and is not consistent with modern search input behavior.
Steps to reproduce
Navigate to a page containing a searchable table.
Enter a search query with 2 or more characters.
Observe that the table does not update automatically.
Press Enter.
The search is executed and the table updates with the filtered results.
What was the expected result?
Once the user enters at least 2 characters in the table search input, the search should automatically execute and update the table results without requiring the Enter key to be pressed.
Additional Notes
The search should trigger automatically when the query length reaches 2 or more characters.
Consider using a small debounce interval to avoid excessive search requests while the user is typing.
This change would improve usability and reduce unnecessary user actions.
Describe your issue
Currently, table search functionality requires users to type a query and then press Enter before the search is executed.
Instead, the search should automatically run once the minimum required number of characters (2 characters) has been entered into the search field. Requiring an additional Enter key press creates unnecessary friction and is not consistent with modern search input behavior.
Steps to reproduce
Navigate to a page containing a searchable table.
Enter a search query with 2 or more characters.
Observe that the table does not update automatically.
Press Enter.
The search is executed and the table updates with the filtered results.
What was the expected result?
Once the user enters at least 2 characters in the table search input, the search should automatically execute and update the table results without requiring the Enter key to be pressed.
Additional Notes
The search should trigger automatically when the query length reaches 2 or more characters.
Consider using a small debounce interval to avoid excessive search requests while the user is typing.
This change would improve usability and reduce unnecessary user actions.