From 082d0819f32e00bcf185d76a714555477c377a83 Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Mon, 26 Aug 2024 14:06:20 +1000 Subject: [PATCH] =?UTF-8?q?fix(api):=20=D0=A1=D1=82=D0=B0=D1=82=D0=B8?= =?UTF-8?q?=D1=81=D1=82=D0=B8=D0=BA=D0=B0=20=D0=BD=D0=B0=D0=B3=D1=80=D1=83?= =?UTF-8?q?=D0=B7=D0=BA=D0=B8=20=D0=BF=D0=BE=20=D1=80=D0=B0=D0=B1=D0=BE?= =?UTF-8?q?=D1=87=D0=B8=D0=BC=20=D0=B3=D1=80=D1=83=D0=BF=D0=BF=D0=B0=D0=BC?= =?UTF-8?q?,=20=D1=81=D0=BE=D1=80=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=BA?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/V1/Statistics/StatWorkWorkLoadController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PARR.API/Controllers/V1/Statistics/StatWorkWorkLoadController.cs b/PARR.API/Controllers/V1/Statistics/StatWorkWorkLoadController.cs index 9b6d2c13..a8ac50c6 100644 --- a/PARR.API/Controllers/V1/Statistics/StatWorkWorkLoadController.cs +++ b/PARR.API/Controllers/V1/Statistics/StatWorkWorkLoadController.cs @@ -87,7 +87,7 @@ namespace PARR.API.Controllers.V1.Statistics }); }); - response = response.OrderBy(t => t.Job.ShortDescription).ToList(); + response = response.OrderBy(t => t.Job.ShortDescription).ThenBy(t=>t.Job.Application?.Name).ToList(); return Ok(new Response>(response, true)); }