From db81e55512737e154cae5d7833360bb2549be5e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agn=C3=A8s=20Toulet?= <35176601+AgnesToulet@users.noreply.github.com> Date: Wed, 23 Jun 2021 15:13:25 +0200 Subject: [PATCH] Dashboard: fix SoloPanelPage (#36060) --- .../dashboard/containers/SoloPanelPage.tsx | 38 ++++++++++--------- 1 file changed, 20 insertions(+), 18 deletions(-) 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 ( + + ); + }} + +
); } }