Fix: Sort consumption templates by order by default (#4956)

This commit is contained in:
shamoon 2023-12-12 08:27:26 -08:00 committed by GitHub
parent 9454978264
commit ff31558252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1347,7 +1347,7 @@ class ConsumptionTemplateViewSet(ModelViewSet):
model = ConsumptionTemplate
queryset = ConsumptionTemplate.objects.all().order_by("name")
queryset = ConsumptionTemplate.objects.all().order_by("order")
class CustomFieldViewSet(ModelViewSet):