update superAdmin users business

This commit is contained in:
2026-03-14 16:26:22 +03:30
parent 9bfbef6f64
commit 20be653499
126 changed files with 2891 additions and 169 deletions
@@ -150,10 +150,7 @@ export class PageDataListComponent<I> {
if (!path) return '-';
const nestedData = path
.split('.')
.reduce(
(obj, key) => (obj && obj[key] !== undefined ? obj[key] : null),
item[String(field)],
);
.reduce((obj, key) => (obj && obj[key] !== undefined ? obj[key] : null), item);
return nestedData || '-';
}