Skip to content

Commit

Permalink
Merge branch 'main' into mig3
Browse files Browse the repository at this point in the history
  • Loading branch information
EshaanAgg authored Nov 11, 2023
2 parents f818feb + c4d67d8 commit ae63f77
Show file tree
Hide file tree
Showing 3 changed files with 319 additions and 329 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
"typescript": "5.2.2"
},
"resolutions": {
"**/lodash": "4.17.21",
"**/@types/react": "18.2.33"
"**/lodash": "^4.17.21"
},
"workspaces": {
"packages": [
Expand Down
14 changes: 13 additions & 1 deletion packages/jaeger-ui/src/components/DependencyGraph/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,19 @@ export class DependencyGraphPageImpl extends Component {
}

if (!nodes || !links) {
return <div className="u-simple-card ub-m3">No service dependencies found.</div>;
return (
<div className="u-simple-card ub-m3">
No service dependencies found.{' '}
<a
href="https://www.jaegertracing.io/docs/latest/faq/#why-is-the-dependencies-page-empty"
rel="noopener noreferrer"
target="_blank"
>
See FAQ
</a>
.
</div>
);
}

const GRAPH_TYPE_OPTIONS = [GRAPH_TYPES.FORCE_DIRECTED];
Expand Down
Loading

0 comments on commit ae63f77

Please sign in to comment.