Fix subscribers counts in list filter in subscribers listing
[MAILPOET-3136]
This commit is contained in:
committed by
Veljko V
parent
0f11026e35
commit
8b5ab57b64
@@ -177,7 +177,7 @@ class SubscriberListingRepository extends ListingRepository {
|
||||
|
||||
foreach ($queryBuilder->getQuery()->getResult() as $item) {
|
||||
$segmentList[] = [
|
||||
'label' => sprintf('%s (%d)', $item['name'], number_format((float)$item['subscribersCount'])),
|
||||
'label' => sprintf('%s (%s)', $item['name'], number_format((float)$item['subscribersCount'])),
|
||||
'value' => $item['id'],
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user