Skip to content

Commit

Permalink
[DH 576] Improve admin search
Browse files Browse the repository at this point in the history
  • Loading branch information
alextreme committed Jun 3, 2024
1 parent 07c57b2 commit 3a9a8c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/objecttypes/core/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class ObjectTypeAdmin(
SharingConfigsImportMixin, SharingConfigsExportMixin, admin.ModelAdmin
):
list_display = ("name", "name_plural", "allow_geometry")
search_fields = ("uuid",)
search_fields = ("name", "name_plural", "uuid")
inlines = [ObjectVersionInline]

change_list_template = "admin/core/objecttype/object_list.html"
Expand Down

0 comments on commit 3a9a8c8

Please sign in to comment.