From dba1fe9fd20405d91f2f09335e41284bee434319 Mon Sep 17 00:00:00 2001 From: Sweta Agarwalla <105535990+sweta1308@users.noreply.github.com> Date: Wed, 5 Feb 2025 12:49:23 +0530 Subject: [PATCH] Fix: Bot page layout issue (#19673) * update pagelayout * update layout --- .../components/PageLayoutV1/PageLayoutV1.tsx | 62 +++++++++---------- 1 file changed, 30 insertions(+), 32 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/PageLayoutV1/PageLayoutV1.tsx b/openmetadata-ui/src/main/resources/ui/src/components/PageLayoutV1/PageLayoutV1.tsx index 156498e73c7..dada8eb86ae 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/PageLayoutV1/PageLayoutV1.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/PageLayoutV1/PageLayoutV1.tsx @@ -103,40 +103,38 @@ const PageLayoutV1: FC = ({ {leftPanel} )} - - - - - {alert && ( - - )} - - - {children} - - - - {rightPanel && ( - - {rightPanel} - + + + {alert && ( + + + + )} + + {children} + + + {rightPanel && ( + + {rightPanel} + + )} );