diff --git a/netbox/utilities/views.py b/netbox/utilities/views.py index 1cafbfc52..e480410e4 100644 --- a/netbox/utilities/views.py +++ b/netbox/utilities/views.py @@ -130,7 +130,7 @@ class ObjectListView(View): # Construct queryset for tags list if hasattr(model, 'tags'): - tags = model.tags.annotate(count=Count('taggit_taggeditem_items')).order_by('-count', 'name') + tags = model.tags.annotate(count=Count('taggit_taggeditem_items')).order_by('name') else: tags = None