nuxeo-development-framework 3.3.2-snapshot → 3.3.3-snapshot
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.
- package/bundles/nuxeo-development-framework.umd.js +6 -0
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +7 -1
- package/fesm2015/nuxeo-development-framework.js +6 -0
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -15150,6 +15150,9 @@
|
|
|
15150
15150
|
if (changes.openCloseFilterFromOutside) {
|
|
15151
15151
|
this.openFilter = changes.openCloseFilterFromOutside.currentValue;
|
|
15152
15152
|
}
|
|
15153
|
+
else if (!changes.sortingArray.firstChange) {
|
|
15154
|
+
this.getTableData({ aggregations: this.originalAggregations });
|
|
15155
|
+
}
|
|
15153
15156
|
};
|
|
15154
15157
|
DynamicSearchComponent.prototype.ngOnInit = function () {
|
|
15155
15158
|
var _this = this;
|
|
@@ -15216,6 +15219,9 @@
|
|
|
15216
15219
|
DynamicSearchComponent.prototype.paginationChange = function (event) { };
|
|
15217
15220
|
DynamicSearchComponent.prototype.getTableData = function (data) {
|
|
15218
15221
|
var _this = this;
|
|
15222
|
+
if (!this.originalAggregations) {
|
|
15223
|
+
this.originalAggregations = data.aggregations;
|
|
15224
|
+
}
|
|
15219
15225
|
this.loading = false;
|
|
15220
15226
|
this.aggregations = Object.entries(data.aggregations || {}).map(function (item) {
|
|
15221
15227
|
return item[1];
|