diff --git a/changelog.md b/changelog.md index 063dec03..eb343e4f 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,7 @@ ## Release 4.1 [unreleased] Brief summary of what's in this release: - +- Fixed an issue where the filters would not be applied when another user uploads a package ### Breaking changes diff --git a/src/components/Packages/PackageList.js b/src/components/Packages/PackageList.js index c9a088eb..214cc025 100755 --- a/src/components/Packages/PackageList.js +++ b/src/components/Packages/PackageList.js @@ -75,7 +75,7 @@ class PackageList extends Component { } else { - panels = this.state.packages.map((uploadPackage, index) => { + panels = applyFilters(this.props.filtering.filters, this.state.unfilteredPackages, this.props.filtering.packageTypes).map((uploadPackage, index) => { return ; }); }