orchidsoftware / platform

Orchid is a @laravel package that allows for rapid application development of back-office applications, admin/user panels, and dashboards.
https://orchid.software
MIT License
4.26k stars 631 forks source link

Relation field bug #2693

Open rudakov-bogdan opened 11 months ago

rudakov-bogdan commented 11 months ago

Hello!

Maybe I'm wrong, but in relation_controller.js in the connect method, the maximumSelectionLength attribute should be passed not like

maxItems: select.getAttribute('maximumSelectionLength') || select.hasAttribute('multiple') ? null : 1,

but like

maxItems: select.getAttribute('maximumSelectionLength') || select.hasAttribute('multiple') ? select.getAttribute('maximumSelectionLength') : 1,