Skip to content

Commit

Permalink
Add no service deps message
Browse files Browse the repository at this point in the history
  • Loading branch information
Shan Aminzadeh committed May 23, 2017
1 parent 19aff70 commit bb58fed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/DependencyGraph/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,15 @@ export default class DependencyGraphPage extends Component {
}

if (!nodes || !links) {
return <section />;
return (
<div className="m1">
<div className="ui warning message">
<div className="header">
No service dependencies found.
</div>
</div>
</div>
);
}

const GRAPH_TYPE_OPTIONS = [
Expand Down

0 comments on commit bb58fed

Please sign in to comment.