Skip to content

Commit

Permalink
fix(util) bug in findTemplateConcept
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Selman <[email protected]>
  • Loading branch information
dselman committed Jun 6, 2023
1 parent 701d0b1 commit 89d8edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/markdown-template/src/templatemarkutil.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const templateMarkManager = mkTemplateMarkManager();
*/
function findTemplateConcept(introspector, templateKind, conceptFullyQualifiedName) {
if(conceptFullyQualifiedName) {
return introspector.getClassDeclaration();
return introspector.getClassDeclaration(conceptFullyQualifiedName);
}
else {
const templateModels = introspector.getClassDeclarations().filter((item) => {
Expand Down

0 comments on commit 89d8edd

Please sign in to comment.