Skip to content
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

feat(web): Novu Dashboard fix- After clearing the search a provider input selected tab list should be visible not to show list from begining #6386

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ export function SelectProviderSidebar({
type={'search'}
onChange={(e) => {
debouncedSearchChange(e.target.value);
if (e.target.value === '') {
// added timeout of 1000ms so that scroll happens after provider list is rendered
setTimeout(() => scrollToElement(selectedTab), 1000);
}
}}
mb={20}
placeholder={'Search a provider...'}
Expand Down
Loading