diff options
author | Chocobozzz <me@florianbigard.com> | 2022-07-12 10:19:33 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-07-12 10:19:33 +0200 |
commit | 0667dbaf268e05b5c9d22f662532e86a1233741c (patch) | |
tree | 9aaf548f7796958d6642715a8fc81672ddef0790 /client/src/app/+admin/moderation | |
parent | a49407524fc1212299a41d7c5330f27b36112167 (diff) | |
download | PeerTube-0667dbaf268e05b5c9d22f662532e86a1233741c.tar.gz PeerTube-0667dbaf268e05b5c9d22f662532e86a1233741c.tar.zst PeerTube-0667dbaf268e05b5c9d22f662532e86a1233741c.zip |
Reset table pagination on search
Diffstat (limited to 'client/src/app/+admin/moderation')
-rw-r--r-- | client/src/app/+admin/moderation/video-block-list/video-block-list.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/moderation/video-block-list/video-block-list.component.html b/client/src/app/+admin/moderation/video-block-list/video-block-list.component.html index b302014b6..28109d007 100644 --- a/client/src/app/+admin/moderation/video-block-list/video-block-list.component.html +++ b/client/src/app/+admin/moderation/video-block-list/video-block-list.component.html | |||
@@ -4,8 +4,8 @@ | |||
4 | </h1> | 4 | </h1> |
5 | 5 | ||
6 | <p-table | 6 | <p-table |
7 | [value]="blocklist" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions" | 7 | [value]="blocklist" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [first]="pagination.start" |
8 | [sortField]="sort.field" [sortOrder]="sort.order" dataKey="id" | 8 | [rowsPerPageOptions]="rowsPerPageOptions" [sortField]="sort.field" [sortOrder]="sort.order" dataKey="id" |
9 | [lazy]="true" (onLazyLoad)="loadLazy($event)" [lazyLoadOnInit]="false" | 9 | [lazy]="true" (onLazyLoad)="loadLazy($event)" [lazyLoadOnInit]="false" |
10 | [showCurrentPageReport]="true" i18n-currentPageReportTemplate | 10 | [showCurrentPageReport]="true" i18n-currentPageReportTemplate |
11 | currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} blocked videos" | 11 | currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} blocked videos" |