You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My app uses a LOT of filters, and with UI v2, I had these:
<USelect :items="items" placeholder="Filter by tags" v-model="tagFilter" />
// filter by tags
const items = [
{
label: "Show all tags",
value: ""
},
{
label: "Only Red Tags",
value: "red"
},
{
label: "Only Green Tags",
value: "green"
}
]
const tagFilter = ref(null)
but in v3 I now get this error:
Error: A must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.
How would I add this option in?
The text was updated successfully, but these errors were encountered:
Description
My app uses a LOT of filters, and with UI v2, I had these:
but in v3 I now get this error:
How would I add this option in?
The text was updated successfully, but these errors were encountered: