Skip to content

Commit b038337

Browse files
committed
v5.0.59
1 parent 37e0785 commit b038337

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netdata/netdata-ui",
3-
"version": "5.0.58",
3+
"version": "5.0.59",
44
"description": "netdata UI kit",
55
"main": "dist/index.js",
66
"module": "dist/es6/index.js",

src/components/input/multiRange/styled.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const SliderTrack = styled(Box)`
1616
background-size: ${({ max, maxValue, min, minValue }) =>
1717
`${((maxValue - minValue) * 100) / (max - min)}% 100%`};
1818
height: 2px;
19-
width: ${({ width }) => `${width}px` || "100%"};
19+
width: ${({ width }) => (width ? `${width}px` : "100%")};
2020
`
2121

2222
export const Range = styled(InputRange)`

src/components/table/header/actions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const HeaderActions = ({
4848
if (!actions.length && !enableColumnVisibility) return null
4949

5050
return (
51-
<Flex gap={0.5} data-testid="bulk-actions" flex="1" justifyContent="end">
51+
<Flex gap={0.5} data-testid="bulk-actions" justifyContent="end">
5252
{actions.map(action => (
5353
<Action
5454
key={action.id}

0 commit comments

Comments
 (0)