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
How to reproduce:
PageContentAdmin
get_fieldsets
This will raise a ValueError in cms_config.py:283 stating that list.remove(x): x not in list.
list.remove(x): x not in list
The problem could be easily fixed by checking if f_name is member of fields.
f_name
fields
Shall I create a pull request for this? I however don't know how to create a test for it.
The text was updated successfully, but these errors were encountered:
@jrief Thank you for offering a PR!
Sorry, something went wrong.
No branches or pull requests
How to reproduce:
PageContentAdmin
.get_fieldsets
, add some extra fields part of your page content extension model.This will raise a ValueError in cms_config.py:283 stating that
list.remove(x): x not in list
.The problem could be easily fixed by checking if
f_name
is member offields
.Shall I create a pull request for this? I however don't know how to create a test for it.
The text was updated successfully, but these errors were encountered: