diff --git a/src/js/3p-filters.js b/src/js/3p-filters.js index ee2856d39..682a83c8d 100644 --- a/src/js/3p-filters.js +++ b/src/js/3p-filters.js @@ -182,6 +182,12 @@ const renderFilterLists = ( ) => { } for ( const [ listkey, listDetails ] of treeEntries ) { const listEntry = createListEntry(listDetails, depth); + if ( dom.cl.has(dom.root, 'mobile') ) { + const leafStats = qs$(listEntry, '.leafstats'); + if ( leafStats ) { + listEntry.append(leafStats); + } + } listEntry.dataset.key = listkey; listEntry.dataset.parent = parentkey; dom.text(qs$(listEntry, '.listname'), listDetails.title);