[DSC-389] Fixed default value of showPaginator

This commit is contained in:
Davide Negretti
2022-02-24 16:25:47 +01:00
parent 079b2a772a
commit 3a3ebd4c4c
2 changed files with 1 additions and 2 deletions

View File

@@ -31,7 +31,6 @@
[sortConfig]="(currentSort$ |async)" [sortConfig]="(currentSort$ |async)"
[type]="startsWithType" [type]="startsWithType"
[startsWithOptions]="startsWithOptions" [startsWithOptions]="startsWithOptions"
[showPaginator]="true"
(prev)="goPrev()" (prev)="goPrev()"
(next)="goNext()"> (next)="goNext()">
</ds-browse-by> </ds-browse-by>

View File

@@ -67,7 +67,7 @@ export class BrowseByComponent implements OnInit {
/** /**
* Whether or not the pagination should be rendered as simple previous and next buttons instead of the normal pagination * Whether or not the pagination should be rendered as simple previous and next buttons instead of the normal pagination
*/ */
@Input() showPaginator = true; @Input() showPaginator = false;
/** /**
* It is used to hide or show gear * It is used to hide or show gear