diff --git a/PARR.API/Controllers/V1/ApplicationTypeController.cs b/PARR.API/Controllers/V1/ApplicationTypeController.cs index 36d6fa74..6f6c3f8a 100644 --- a/PARR.API/Controllers/V1/ApplicationTypeController.cs +++ b/PARR.API/Controllers/V1/ApplicationTypeController.cs @@ -38,7 +38,7 @@ namespace PARR.API.Controllers.V1 [HttpGet(ApiRoutes.ApplicationType.GetAll)] public async Task GetAll() { - var appTypes = await applicationTypeService.Get().OrderBy(t => t.Name) + var appTypes = await applicationTypeService.Get().OrderBy(t => t.Description) .ToListAsync(); if (!appTypes.Any())