Skip to content

Commit

Permalink
fix: add missing return for createTargetFromProject
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoVogel committed Oct 25, 2022
1 parent f19727a commit f22b477
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export abstract class BaseView {
return;
}

Object.entries(targets).map((target) =>
return Object.entries(targets).map((target) =>
this.createTargetTreeItem(nxProject, target)
);
}
Expand Down

0 comments on commit f22b477

Please sign in to comment.