From b56bc7f52c67706897db32c9242add2d8c218b45 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 26 Dec 2023 20:59:18 +0000 Subject: [PATCH] fix: amend 64325dd1826af952d4673a04127f50b644a63148 --- OliverBooth/Pages/Projects/Index.cshtml | 1 + 1 file changed, 1 insertion(+) diff --git a/OliverBooth/Pages/Projects/Index.cshtml b/OliverBooth/Pages/Projects/Index.cshtml index 3e5b41a..90468e5 100644 --- a/OliverBooth/Pages/Projects/Index.cshtml +++ b/OliverBooth/Pages/Projects/Index.cshtml @@ -7,6 +7,7 @@ IEnumerable projects = ProjectService.GetProjects(ProjectStatus.Ongoing).OrderBy(p => p.Rank) .Concat(ProjectService.GetProjects(ProjectStatus.Past).OrderBy(p => p.Rank)) + .Concat(ProjectService.GetProjects(ProjectStatus.Retired).OrderBy(p => p.Rank)) .Concat(ProjectService.GetProjects(ProjectStatus.Hiatus).OrderBy(p => p.Rank)); }