@decaf-ts/for-angular 0.0.45 → 0.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10127,7 +10127,7 @@ let ListComponent = class ListComponent extends NgxComponentDirective {
|
|
|
10127
10127
|
if (!Array.isArray(result) && ('page' in result && 'total' in result)) {
|
|
10128
10128
|
const paginator = result;
|
|
10129
10129
|
try {
|
|
10130
|
-
result =
|
|
10130
|
+
result = await paginator.page(this.page);
|
|
10131
10131
|
this.getMoreData(paginator.total);
|
|
10132
10132
|
}
|
|
10133
10133
|
catch (error) {
|