Skip to content
Snippets Groups Projects
Verified Commit 03d83a6a authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix list combination

parent 93baf4e9
No related branches found
No related tags found
1 merge request!248Resolve "Allow matching primary groups on arbitrary field"
Pipeline #1943 passed with warnings
...@@ -184,7 +184,7 @@ class ExtensibleModel(models.Model): ...@@ -184,7 +184,7 @@ class ExtensibleModel(models.Model):
return [ return [
field field
for field in cls._meta.fields + cls._extended_data_fields for field in list(cls._meta.fields) + cls._extended_data_fields
if (field.editable and not field.auto_created and not field.is_relation) if (field.editable and not field.auto_created and not field.is_relation)
] ]
......
Subproject commit 23a4be92b84da38cea0f3d9ac382ba03e63ff139 Subproject commit d0c674577acb61054369f3086f0d0782c6b0a57f
Subproject commit e93849fb326fddf183d42a5b167425b061ffa124 Subproject commit a7bd17eea561f28f6693e1c0b5b58383f5a829ce
Subproject commit 3006443bda5b013a71972dc4b56b778e6ade3247 Subproject commit 9cbc0dc7d39ccc424c75011c803f29948daf93e1
Subproject commit 3721117128d3c449dd0001627854faa9c0c26d1e Subproject commit de809e65e8bf107b761c4a984f14ef517a531f23
Subproject commit df755acbcafb7aaa95efec0cd80478885d8feb72 Subproject commit a567021ee5e66657b3374a76865bab1ee9bdbc33
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment