Skip to content
Snippets Groups Projects
Commit ff7aa335 authored by Giuseppe Digilio's avatar Giuseppe Digilio
Browse files

hide pagination details from mydspace item detail view

parent dfd8a69d
No related merge requests found
......@@ -4,6 +4,7 @@
[collectionSize]="objects?.payload?.totalElements"
[sortOptions]="sortConfig"
[hideGear]="hideGear"
[hidePaginationDetail]="hidePaginationDetail"
[hidePagerWhenSinglePage]="hidePagerWhenSinglePage"
(pageChange)="onPageChange($event)"
(pageSizeChange)="onPageSizeChange($event)"
......
......@@ -66,6 +66,11 @@ export class ObjectDetailComponent {
return this._objects;
}
/**
* Option for hiding the pagination detail
*/
public hidePaginationDetail = true;
/**
* An event fired when the page is changed.
* Event's payload equals to the newly selected page.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment