88300: Implement feedback

This commit is contained in:
Yana De Pauw
2022-04-19 14:57:42 +02:00
parent 712aac911c
commit f828215f48
11 changed files with 49 additions and 41 deletions

View File

@@ -70,7 +70,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
*/
@Input() showPaginator = false;
@Input() showPaginator = true;
/**
* It is used to hide or show gear
@@ -173,4 +173,7 @@ export class BrowseByComponent implements OnInit {
);
}
back() {
this.paginationService.updateRoute(this.paginationConfig.id, {page: 1}, {value: null, startsWith: null});
}
}