We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This seems to be caused by DropdownField::Field() adding the empty value after DependentDropdownField::getSource() adds it to the actual source array.
DropdownField::Field()
DependentDropdownField::getSource()
silverstripe-dependentdropdownfield/code/DependentDropdownField.php
Lines 86 to 90 in 108adf3
Changing these lines to return $source seems to fix the problem.
return $source
The text was updated successfully, but these errors were encountered:
Fix sheadawson#27
781da2b
480d2c1
No branches or pull requests
This seems to be caused by
DropdownField::Field()
adding the empty value afterDependentDropdownField::getSource()
adds it to the actual source array.silverstripe-dependentdropdownfield/code/DependentDropdownField.php
Lines 86 to 90 in 108adf3
Changing these lines to
return $source
seems to fix the problem.The text was updated successfully, but these errors were encountered: