Как скрыть текст Default Pagination
? Я попытался установить screenReaderPaginationLabel="Pagination"
<div>
<table class="table table-striped" border="1">
<tbody>
<ng-container *ngFor="let item of this.value.scans | paginate: { itemsPerPage: 15, currentPage: p }">
<tr>
<th>Detection</th>
{{item.detected}}
</tr>
</ng-container>
</tbody>
</table>
</div>
<pagination-controls (pageChange)="p = $event" screenReaderPaginationLabel="Pagination"></pagination-controls>