-
Notifications
You must be signed in to change notification settings - Fork 1
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
WIP: Feature/search options #157
base: betaStaging
Are you sure you want to change the base?
Conversation
… working as wanted, with some small ux and styling changes likely warranted.
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.
See comments, also:
- There seems to be a bug on the search box where it's always showing up as if its
:hover
is active? Like it has a white outline all the time.
url: string; | ||
} | ||
|
||
const placeHolderVals = [{ title: "test" }, { title: "hello" }]; |
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'm assuming placeholders are no longer needed?
); | ||
|
||
useEffect(() => { | ||
console.log("render"); |
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.
could be cleaned up
@@ -10,7 +10,7 @@ import JUPSettingsMenu from "components/JUPSettingsMenu"; | |||
const drawerWidth = 240; | |||
|
|||
// Placeholder values for the autocomplete | |||
const placeHolderVals = ["test", "hello"]; | |||
const placeHolderVals = [{ title: "test" }, { title: "hello" }]; |
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.
similar to above, can placeholdervals be removed?
@vwalsh I made some comments on this a while back. I still need to do some more testing on this so let me know when you've had a chance to look at the comments. |
search bar now works in some basic ways. consider:
WIP until most of the above is resolved and confirmed this implementation is adequate.