Skip to content

Commit

Permalink
Fix alerts count (#187)
Browse files Browse the repository at this point in the history
* Fix alerts count

* v4.6.2
  • Loading branch information
kapantzak authored Apr 21, 2024
1 parent 7ed79f4 commit 2ff00ec
Show file tree
Hide file tree
Showing 2 changed files with 2 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/charts",
"version": "4.6.1",
"version": "4.6.2",
"description": "Netdata frontend SDK and chart utilities",
"main": "dist/index.js",
"module": "dist/es6/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/makeChart/camelizePayload.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default payload => {
return h
}, {}),
alerts: alerts.reduce((h, a) => {
h[a.name] = a
h[a.nm] = a
return h
}, {}),
viewDimensions,
Expand Down

0 comments on commit 2ff00ec

Please sign in to comment.