Skip to content

Commit 6488711

Browse files
committed
Merge branch 'master' into DLS-Release-v1.1.1
2 parents 980b9c7 + ec7910b commit 6488711

File tree

5 files changed

+8
-33
lines changed

5 files changed

+8
-33
lines changed

.github/workflows/build-and-deploy-production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121

22-
- name: Setup .NET Core SDK 6.0
22+
- name: Setup .NET Core SDK 8.0
2323
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: 6.0.x
25+
dotnet-version: 8.0.x
2626
- name: Setup node
2727
uses: actions/setup-node@v4
2828
with:

.github/workflows/build-and-deploy-uat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424

25-
- name: Setup .NET Core SDK 6.0
25+
- name: Setup .NET Core SDK 8.0
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: 6.0.x
28+
dotnet-version: 8.0.x
2929
- name: Setup node
3030
uses: actions/setup-node@v4
3131
with:

.github/workflows/continuous-integration-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- name: Setup .NET Core SDK 6.0
15+
- name: Setup .NET Core SDK 8.0
1616
uses: actions/setup-dotnet@v4
1717
with:
18-
dotnet-version: 6.0.x
18+
dotnet-version: 8.0.x
1919

2020
- name: Add TechnologyEnhancedLearning as nuget package source
2121
run: dotnet nuget add source https://pkgs.dev.azure.com/e-LfH/_packaging/LearningHubFeed/nuget/v3/index.json --name TechnologyEnhancedLearning --username 'kevin.whittaker' --password ${{ secrets.AZURE_DEVOPS_PAT }} --store-password-in-clear-text

DigitalLearningSolutions.Data.Migrations/202410071401_UpdateCandidateAssessmentSupervisorsTabl.cs

Lines changed: 0 additions & 21 deletions
This file was deleted.

DigitalLearningSolutions.Web/Controllers/FrameworksController/Competencies.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,10 @@ public IActionResult AddEditFrameworkCompetency(int frameworkId, FrameworkCompet
189189
FrameworkGroupId = frameworkCompetencyGroupId,
190190
FrameworkCompetencyId = frameworkCompetencyId,
191191
FrameworkConfig = detailFramework?.FrameworkConfig,
192-
Competency = new FrameworkCompetency()
193-
{
194-
Name = frameworkCompetency.Name,
195-
Description = frameworkCompetency.Description
196-
},
192+
Competency = frameworkCompetency,
197193
MatchingSearchResults = matchingSearchResults.Count,
198194
SameCompetency = similarItems,
199-
selectedFlagIds = selectedFlagIds.Any() ? selectedFlagIds.Select(a => a.ToString()).Aggregate((b, c) => b + "," + c) : string.Empty,
195+
selectedFlagIds = selectedFlagIds != null ? selectedFlagIds.Select(a => a.ToString()).Aggregate((b, c) => b + "," + c) : string.Empty
200196
};
201197
return View("Developer/SimilarCompetency", model);
202198
}

0 commit comments

Comments
 (0)