Skip to content

Commit b65e445

Browse files
committed
fix(controller): state property cant be used in a list_filter
1 parent 3838a0a commit b65e445

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)