Skip to content

Commit

Permalink
Fixed some small issues when converting to ceasn.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Jan 19, 2024
1 parent 5e8bea9 commit bc3d1ec
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 @@ -245,7 +245,7 @@ async function cassFrameworkAsCeasn() {
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 bc3d1ec

Please sign in to comment.