Skip to content

Commit

Permalink
Fix default filterSelectedCount function (#185)
Browse files Browse the repository at this point in the history
* Fix default filterSelectedCount function

* Bump patch
  • Loading branch information
kapantzak authored Jan 4, 2024
1 parent a92d05d commit 013a843
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.3.7",
"version": "4.3.8",
"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/components/filterToolbox/dropdownTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const noop = () => {}
const defaultSortBy = [{ id: "contribution", desc: true }]

const defaultExpanded = {}
const defaultFilterSelectedCount = () => true
const defaultFilterSelectedCount = arr => arr

const Dropdown = ({
getOptions,
Expand Down

0 comments on commit 013a843

Please sign in to comment.