Skip to content

Commit

Permalink
feat: Respect resize of DataTable in Notebook (#17929)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite authored Oct 12, 2023
1 parent 9fc8c42 commit 85451aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/queries/nodes/DataTable/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export function DataTable({ uniqueKey, query, setQuery, context, cachedResults }
return (
<BindLogic logic={dataTableLogic} props={dataTableLogicProps}>
<BindLogic logic={dataNodeLogic} props={dataNodeLogicProps}>
<div className="relative w-full flex flex-col gap-4 flex-1">
<div className="relative w-full flex flex-col gap-4 flex-1 overflow-hidden">
{showHogQLEditor && isHogQLQuery(query.source) && !isReadOnly ? (
<HogQLQueryEditor query={query.source} setQuery={setQuerySource} embedded={embedded} />
) : null}
Expand Down

0 comments on commit 85451aa

Please sign in to comment.