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
Describe the bug
List fields have no filter inputs in the CollectionFilterType.
To Reproduce
Add a list field to a definition and no filter input fields are created for it. In the following example there are no filter inputs in the ArticleFilter for the values field.
class ArticleDefinition {
use Introspectable;
publicfunctionfields(): array
{
return [
'title' => Bakery::string(),
'values' => Bakery::string()->list(),
];
}
}
Laravel Version: [e.g. 5.6.23]
Bakery Version: 2.0.0-beta.1
The text was updated successfully, but these errors were encountered:
Describe the bug
List fields have no filter inputs in the
CollectionFilterType
.To Reproduce
Add a list field to a definition and no filter input fields are created for it. In the following example there are no filter inputs in the
ArticleFilter
for thevalues
field.The text was updated successfully, but these errors were encountered: