diff --git a/public/app/features/dashboard/containers/SoloPanelPage.tsx b/public/app/features/dashboard/containers/SoloPanelPage.tsx index 084475a99c8..16449e96d51 100644 --- a/public/app/features/dashboard/containers/SoloPanelPage.tsx +++ b/public/app/features/dashboard/containers/SoloPanelPage.tsx @@ -84,24 +84,26 @@ export class SoloPanelPage extends Component { } return ( - - {({ width, height }) => { - if (width === 0) { - return null; - } - return ( - - ); - }} - +
+ + {({ width, height }) => { + if (width === 0) { + return null; + } + return ( + + ); + }} + +
); } }