Skip to content

Commit

Permalink
v4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
novykh committed Oct 25, 2023
1 parent 3c64987 commit 4592ea4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 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/charts",
"version": "4.1.0",
"version": "4.1.1",
"description": "Netdata frontend SDK and chart utilities",
"main": "index.js",
"module": "es6/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/details/chartType.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ChartType = () => {
icon={<Icon svg={metrics} color="key" />}
title="Chart type"
color="key"
data-testid="cartDetails-chartType"
data-testid="chartDetails-chartType"
>
<TextSmall color="textDescription">{chartType}</TextSmall>
</Row>
Expand Down
2 changes: 1 addition & 1 deletion src/components/details/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Context = () => {
icon={<Icon svg={plugins} color="key" />}
title="Plugin and chart context"
color="key"
data-testid="cartDetails-context"
data-testid="chartDetails-context"
>
<Info title="Context">{contextScope.join(", ")}</Info>
</Row>
Expand Down
3 changes: 1 addition & 2 deletions src/components/details/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const Container = styled(Flex).attrs({
column: true,
padding: [4, 3],
gap: 5,
background: "mainBackground",
overflow: { vertical: "auto" },
})`
inset: 0;
Expand All @@ -21,7 +20,7 @@ const Details = () => {
const nodeName = useAttributeValue("nodeName")

return (
<Container data-testid="cartDetails">
<Container data-testid="chartDetails">
<Description />
{nodeName && <Source />}
<Context />
Expand Down
2 changes: 1 addition & 1 deletion src/components/details/source.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Source = () => {
icon={<Icon svg={database} color="key" />}
title="Source"
color="key"
data-testid="cartDetails-source"
data-testid="chartDetails-source"
>
<TextSmall color="textDescription">{nodeName}</TextSmall>
</Row>
Expand Down

0 comments on commit 4592ea4

Please sign in to comment.