File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/dashboard/Data/Browser Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 44
55* _ Contributing to this repo? Add info about your change here to be included in next release_
66* Fix: Filtering with a 1-digit number (#831 ), thanks to [ Pascal Giguère] ( https://github.com/pgiguere1 )
7+ * Fix: Databrowser shows correct count of filtered objects, thanks to [ Tom Engelbrecht] ( https://github.com/engel )
78
89### 1.1.2
910
Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ export default class Browser extends DashboardView {
330330 async fetchData ( source , filters = new List ( ) ) {
331331 const data = await this . fetchParseData ( source , filters ) ;
332332 var filteredCounts = { ...this . state . filteredCounts } ;
333- if ( filters . length > 0 ) {
333+ if ( filters . size > 0 ) {
334334 filteredCounts [ source ] = await this . fetchParseDataCount ( source , filters ) ;
335335 } else {
336336 delete filteredCounts [ source ] ;
You can’t perform that action at this time.
0 commit comments