-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
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
Uncaught TypeError: Cannot read property 'fn' of undefined #106
Labels
Comments
Can you provide an example that produces this error? |
@OskarPersson I can reproduce the error with just the following using django # models.py
from django.db import models
class Fish(models.Model):
title = models.CharField(max_length=255) # admin.py
from django.contrib import admin
from nested_inline.admin import NestedModelAdmin
from django.db import models
from .models import Fish
@admin.register(Fish)
class FishAdmin(NestedModelAdmin):
model = Fish set everything up then visit http://localhost:8000/admin/sample/fish/ (not even the create page) and see the browser's console (tested in firefox and chrome). |
the proposed fix in #127 does fix it for me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
adding another line doesn't work autocomplete_fields. I'm using NestedTabularInline
The text was updated successfully, but these errors were encountered: