Skip to content

Commit 53bf1ed

Browse files
committed
Merge pull request #4456 from benwilber/fix/invalid-list-filter
fix(controller): state property can't be used in a list_filter in the Django web admin
2 parents 99a4e6e + b65e445 commit 53bf1ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/api/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ContainerAdmin(admin.ModelAdmin):
5454
"""
5555
date_hierarchy = 'created'
5656
list_display = ('short_name', 'owner', 'app', 'state')
57-
list_filter = ('owner', 'app', 'state')
57+
list_filter = ('owner', 'app')
5858
admin.site.register(Container, ContainerAdmin)
5959

6060

0 commit comments

Comments
 (0)