Skip to content

Commit

Permalink
v4.1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
novykh committed Dec 1, 2023
1 parent 8001baf commit 4508acb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netdata/netdata-ui",
"version": "4.1.21",
"version": "4.1.22",
"description": "netdata UI kit",
"main": "dist/index.js",
"module": "dist/es6/index.js",
Expand Down
1 change: 1 addition & 0 deletions src/components/table/body/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ const Body = memo(
display: "flex",
height: "100%",
overflow: "auto",
flex: "1",
}}
data-testid={`netdata-table${testPrefix}`}
>
Expand Down
9 changes: 8 additions & 1 deletion src/components/table/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,14 @@ const Table = memo(
const { getHasNextPage, loading, warning } = virtualizeOptions

return (
<Flex height={{ max: "100%" }} overflow="hidden" column ref={ref} className={className}>
<Flex
height={{ max: "100%" }}
overflow="hidden"
column
flex="1"
ref={ref}
className={className}
>
<Header
q={globalFilter}
hasSearch={!!onSearch}
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,4 @@ export { default as Select } from "./components/select"
export { default as SearchInput } from "./components/search"

export { GlobalStyles } from "./global-styles"
export * from "./utils"

0 comments on commit 4508acb

Please sign in to comment.