Skip to content
This repository has been archived by the owner on Feb 5, 2021. It is now read-only.

Commit

Permalink
Merge pull request #169 from Minoli/portal
Browse files Browse the repository at this point in the history
Fix dependency diagram gateway dependency
  • Loading branch information
nadundesilva authored Sep 30, 2019
2 parents 2bb525b + 02399a5 commit fe0dac3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const DependencyDiagram = ({data, classes, history}) => {
to: dependentComponent
});
});
if (node.kind === Constants.Type.CELL && component.exposed) {
if (node.kind === Constants.Type.CELL && component.ingressTypes.length > 0) {
nodeMetaInfo.componentDependencyLinks.push({
from: "gateway",
to: componentName
Expand Down

0 comments on commit fe0dac3

Please sign in to comment.