Skip to content

Commit

Permalink
spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
hargata committed Nov 22, 2024
1 parent 3222579 commit 9375bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controllers/Vehicle/NoteController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public partial class VehicleController
public IActionResult GetNotesByVehicleId(int vehicleId)
{
var result = _noteDataAccess.GetNotesByVehicleId(vehicleId);
result = result.OrderByDescending(x => x.Pinned).ThenBy(x=>x.Description).ToList();
result = result.OrderByDescending(x => x.Pinned).ThenBy(x => x.Description).ToList();
return PartialView("_Notes", result);
}
[TypeFilter(typeof(CollaboratorFilter))]
Expand Down

0 comments on commit 9375bb1

Please sign in to comment.