From 87b37888347b7dbdd7cee8751bb2621ff2d525aa Mon Sep 17 00:00:00 2001 From: OluwatobiAwe Date: Mon, 23 Jun 2025 08:00:45 +0100 Subject: [PATCH] Changed the LH menu item order --- .../Controllers/UserController.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenAPI/LearningHub.Nhs.OpenApi/Controllers/UserController.cs b/OpenAPI/LearningHub.Nhs.OpenApi/Controllers/UserController.cs index 9d2aaea2..6e5fe259 100644 --- a/OpenAPI/LearningHub.Nhs.OpenApi/Controllers/UserController.cs +++ b/OpenAPI/LearningHub.Nhs.OpenApi/Controllers/UserController.cs @@ -298,6 +298,12 @@ private List> MenuItems(NavigationModel model) { "visible", model.ShowBrowseCatalogues }, }, new Dictionary + { + { "title", "My learning" }, + { "url", this.learningHubConfig.MyLearningUrl }, + { "visible", model.ShowMyLearning }, + }, + new Dictionary { { "title", "My contributions" }, { "url", this.learningHubConfig.MyContributionsUrl }, @@ -310,12 +316,6 @@ private List> MenuItems(NavigationModel model) { "visible", model.ShowMyBookmarks }, }, new Dictionary - { - { "title", "My learning" }, - { "url", this.learningHubConfig.MyLearningUrl }, - { "visible", model.ShowMyLearning }, - }, - new Dictionary { { "title", "Help" }, { "url", this.learningHubConfig.HelpUrl },