-
-
Notifications
You must be signed in to change notification settings - Fork 78
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
Nova V5 #187
base: master
Are you sure you want to change the base?
Nova V5 #187
Conversation
<select-control | ||
size="xxs" | ||
@change="handleFilterChanged" | ||
:selected="advanceFilterSelected" |
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.
We moved to v-model
and defineModel()
on Nova 5, so I'm unsure if :selected
does anything here.
@change="handleFilterChanged" | ||
:selected="advanceFilterSelected" |
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.
@change="handleFilterChanged" | |
:selected="advanceFilterSelected" | |
@selected="handleFilterChanged" | |
:v-model="advanceFilterSelected" |
handleFilterChanged(value) { | ||
this.advanceFilterSelected = value; |
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.
handleFilterChanged(value) { | |
this.advanceFilterSelected = value; | |
handleFilterChanged(value) { |
Minor UI fixes to make the cards look the same. Otherwise no breaking changes in Nova.