I have an Inline model as following:
class SomeModelInline(InlinePermissionsMixin, nested_admin.NestedStackedInline):
model = MyModel
extra = 1
autocomplete_fields = ['type']
form = MyModelForm
When setting extra=1 the autocomplete works for the first entry (works for all which are defined with extra) , when adding another inline entry by clicking the + add button, the autocomplete field is empty. Comparing the html of these two elements, there are a lot of html tags missing.
I am using Django 4.2