From b58a7158d56baee02e7f69ee107ddc2b589856d4 Mon Sep 17 00:00:00 2001 From: akash-codemonk <67054171+akash-codemonk@users.noreply.github.com> Date: Tue, 18 Aug 2020 15:48:43 +0530 Subject: [PATCH] Fix query response table style (#341) - Overide table body height to auto to take the available space --- app/client/src/pages/Editor/QueryEditor/Table.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/client/src/pages/Editor/QueryEditor/Table.tsx b/app/client/src/pages/Editor/QueryEditor/Table.tsx index 06ec460ce4..36d8e4e627 100644 --- a/app/client/src/pages/Editor/QueryEditor/Table.tsx +++ b/app/client/src/pages/Editor/QueryEditor/Table.tsx @@ -24,6 +24,7 @@ const StyledTableWrapped = styled(TableWrapper)` flex-direction: column; height: auto; .tbody { + height: auto; overflow: auto; } }