ontimize-web-ngx 15.5.0 → 15.5.1
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/esm2020/lib/components/table/o-table.component.mjs +2 -2
- package/fesm2015/ontimize-web-ngx.mjs +1 -1
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +1 -1
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/package.json +1 -1
- package/theme.scss +69 -69
|
@@ -32281,7 +32281,6 @@ class OTableComponent extends AbstractOServiceComponent {
|
|
|
32281
32281
|
if (Util.isDefined(_sort) &&
|
|
32282
32282
|
(!Util.isDefined(this.sort) || (Util.isDefined(this.sort) && Util.stringify(this.sort) !== Util.stringify(_sort)))) {
|
|
32283
32283
|
this.sort = _sort;
|
|
32284
|
-
this.registerSortListener();
|
|
32285
32284
|
this.setDatasource();
|
|
32286
32285
|
}
|
|
32287
32286
|
}
|
|
@@ -33158,6 +33157,7 @@ class OTableComponent extends AbstractOServiceComponent {
|
|
|
33158
33157
|
const dataSourceService = this.injector.get(OTableDataSourceService);
|
|
33159
33158
|
this.dataSource = dataSourceService.getInstance(this);
|
|
33160
33159
|
this.registerDataSourceListeners();
|
|
33160
|
+
this.registerSortListener();
|
|
33161
33161
|
}
|
|
33162
33162
|
registerDataSourceListeners() {
|
|
33163
33163
|
this.onRenderedDataChange = this.dataSource.onRenderedDataChange.subscribe(() => {
|