From e3b2882811f7fcba9883c3b076d8bca97dd4cf97 Mon Sep 17 00:00:00 2001 From: Rajat Dabade Date: Wed, 27 Dec 2023 10:56:36 +0530 Subject: [PATCH] [Fix]: scroll bar issue in table panel (#4043) --- frontend/src/container/GridTableComponent/styles.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/container/GridTableComponent/styles.ts b/frontend/src/container/GridTableComponent/styles.ts index 29e4d7ad83..d95fc46287 100644 --- a/frontend/src/container/GridTableComponent/styles.ts +++ b/frontend/src/container/GridTableComponent/styles.ts @@ -19,5 +19,13 @@ export const WrapperStyled = styled.div` & .ant-table { flex: 1; overflow: auto; + + > .ant-table-container { + > .ant-table-content { + > table { + min-width: 99% !important; + } + } + } } `;