-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add search in solutions #2190
Add search in solutions #2190
Conversation
Screencast.from.02-18-2024.02.16.02.PM.webm |
I don't think we can use combox because it's default searching will be remove after any So I'd recommend using |
<v-text-field | ||
label="Search Applications" | ||
v-model="searchItem" | ||
class="mb-5" | ||
@input="filterCards" | ||
clearable | ||
></v-text-field> |
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.
why do we need @input ? we already using vue so we can easily check if value is updated
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.
Replaced function logic w computed variable.
Also if a user wrote a search query which doesn't match any application we should show a message with some text message (e.g |
Description
Changes
Related Issues
Checklist