Скрыть текст нумерации страниц по умолчанию на странице - PullRequest
0 голосов
/ 31 марта 2020

Как скрыть текст 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>

enter image description here

...