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

refresh redirection dissabled #5126

Merged
merged 12 commits into from
Nov 29, 2023
2 changes: 1 addition & 1 deletion src/reusecore/Search/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const SearchBox = ({
debounceTimeout={500}
onChange={(e) => handleChange(e)}
placeholder="Search..."
autoFocus
// autoFocus
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One thing to say here though @balagowda, if we comment autoFocus then one inconsistency we can observe here while searching and typing for any particular blog is that typing a word is struggling here a bit. You can compare this with the current state of layer5.io/blog here. Can we do something so that our refresh redirection issue as well as this typing inconsistency both get resolve @balagowda ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll look into this

/>
<Button aria-label="search icon">
<FaSearch />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const HoneycombGrid = styled.div`
&:hover {
opacity: 0.8;
box-shadow: 0px 0px 6px -2px rgb(60, 73, 79);
}
}
}

.selected {
Expand Down