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
The select fieldtype should allow max_items: n, similar to relationship fieldtypes.
Right now you can do multiple: true, but you can't set a limit (except manually using validate: 'max:n')
Rather than replacemultiple with max_items, we can probably just allow both.
Like multiple: true could assume max_items: infinity
and setting max_items: 3 would assume multiple: true
and if you do both... good for you for being explicit.
This will help simple v2 suggest fields to be migrated over to v3 select fields.
The text was updated successfully, but these errors were encountered:
The
select
fieldtype should allowmax_items: n
, similar to relationship fieldtypes.Right now you can do
multiple: true
, but you can't set a limit (except manually usingvalidate: 'max:n'
)Rather than replace
multiple
withmax_items
, we can probably just allow both.Like
multiple: true
could assumemax_items: infinity
and setting
max_items: 3
would assumemultiple: true
and if you do both... good for you for being explicit.
This will help simple v2
suggest
fields to be migrated over to v3 select fields.The text was updated successfully, but these errors were encountered: