Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix deep dependency graph not show in uiEmbed=v0 mode #768

Merged
merged 11 commits into from
Oct 14, 2021
2 changes: 1 addition & 1 deletion packages/jaeger-ui/src/components/App/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class PageImpl extends React.Component<TProps> {

render() {
const { embedded } = this.props;
const contentCls = cx({ 'Page--content': !embedded });
const contentCls = cx({ 'Page--content': true });
leroy-chen marked this conversation as resolved.
Show resolved Hide resolved
return (
<div>
<Helmet title="Jaeger UI" />
Expand Down