Skip to content

Commit

Permalink
Merge pull request #305 from cassproject/ce-1341
Browse files Browse the repository at this point in the history
Fix for ceasn conversion in collections
  • Loading branch information
gloverkari authored Feb 6, 2024
2 parents 993c2ec + 1f30bbc commit febbbfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/server/adapter/ceasn/ceasn.js
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ async function cassFrameworkAsCeasnCollection(framework) {
for (var i = 0; i < f.competency.length; i++) {
var c = await EcCompetency.get(f.competency[i], null, null, repo);
if (c != null) {
competencies[f.competency[i]] = competencies[c.id] = c;
competencies[f.competency[i]] = competencies[c.shortId()] = competencies[c.id] = c;
}
}

Expand Down

0 comments on commit febbbfa

Please sign in to comment.