ps-toolkit-ui 0.0.194 → 0.0.195
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/ps-toolkit-ui.umd.js +1 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/table/row/table.row.component.js +1 -2
- package/esm2015/lib/components/table/table.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +1 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2501,7 +2501,6 @@
|
|
|
2501
2501
|
if (this.table.hasChildren) {
|
|
2502
2502
|
if (!this.table.childrenAutoLoad) {
|
|
2503
2503
|
this.children = this.getChildren();
|
|
2504
|
-
console.log(this.table, this.children, 'this.children');
|
|
2505
2504
|
}
|
|
2506
2505
|
if (this.table.permissions.hasAccess(exports.PermissionAccessTypeEnum.Insert)) {
|
|
2507
2506
|
this.addChildren = new InputClass(this.table.environment, this.table.l, this.table.name + 'AddSubsetTitle', 'fad fa-plus fa-rotate-90', exports.InputType.Icon, 'green m-h-5 h-25 d-ib va-m f-u');
|
|
@@ -3090,7 +3089,7 @@
|
|
|
3090
3089
|
}, 500);
|
|
3091
3090
|
};
|
|
3092
3091
|
TableComponent.prototype.getRows = function () {
|
|
3093
|
-
var c = this.table.rows.filter(function (x) { return !x.ParentId; });
|
|
3092
|
+
var c = this.table.rows.filter(function (x) { return !x.Data.ParentId; });
|
|
3094
3093
|
c.forEach(function (x, i) { return x.RowNum = c.length - i + 1; });
|
|
3095
3094
|
return c;
|
|
3096
3095
|
};
|