Skip to content

Commit

Permalink
v4.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
novykh committed Nov 4, 2024
1 parent 7dd05d9 commit 5c7b97f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 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.7.5",
"version": "4.7.6",
"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/header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ const BodyHeader = memo(({ table, testPrefix, ...rest }) => {
size={table.getLeftTotalSize()}
testPrefix={testPrefix}
{...rest}
flex={false}
table={table}
/>
<HeaderGroups
Expand Down
2 changes: 1 addition & 1 deletion src/components/table/body/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const Body = memo(
height: "100%",
overflow: "auto",
flex: "1",
maxWidth: `min(${table.getTotalSize()}, 100%)`,
// maxWidth: `min(${table.getTotalSize()}, 100%)`, // WHY: Removing since it causes issues with fullWidth cells
}}
data-testid={`netdata-table${testPrefix}`}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/table/body/row.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default memo(
border={{ side: "right" }}
zIndex={zIndex || 1}
basis={`${table.getLeftTotalSize()}px`}
flex="grow"
flex={false}
background={index % 2 === 0 ? "tableRowBg2" : "tableRowBg"}
_hover={{
background: index % 2 === 0 ? "tableRowBg2Hover" : "tableRowBgHover",
Expand Down

0 comments on commit 5c7b97f

Please sign in to comment.