1. Bug fix in paging components (limit was not initialized).
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@52106 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
f9aba210a1
commit
91a19a0fcd
|
@ -56,6 +56,7 @@ export class PagingFormatter {
|
|||
this.route.data
|
||||
.subscribe((data: { envSpecific: EnvProperties }) => {
|
||||
this.properties = data.envSpecific;
|
||||
this.limit = this.properties.pagingLimit;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -54,6 +54,7 @@ export class pagingFormatterNoLoad {
|
|||
this.route.data
|
||||
.subscribe((data: { envSpecific: EnvProperties }) => {
|
||||
this.properties = data.envSpecific;
|
||||
this.limit = this.properties.pagingLimit;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue