@dexteel/mesf-core 3.2.4 → 3.2.5
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/dist/index.esm.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -3628,7 +3628,7 @@ var useTableData = function (_a) {
|
|
|
3628
3628
|
];
|
|
3629
3629
|
var rows = state.users.map(function (_a) {
|
|
3630
3630
|
var UserId = _a.UserId, UserName = _a.UserName, LastName = _a.LastName, FirstName = _a.FirstName, Profiles = _a.Profiles;
|
|
3631
|
-
return ({ UserId: UserId, UserName: UserName, LastName: LastName, FirstName: FirstName, Profiles: Profiles.replaceAll("Profile", ""), id: UserId });
|
|
3631
|
+
return ({ UserId: UserId, UserName: UserName, LastName: LastName, FirstName: FirstName, Profiles: Profiles === null || Profiles === void 0 ? void 0 : Profiles.replaceAll("Profile", ""), id: UserId });
|
|
3632
3632
|
});
|
|
3633
3633
|
return { rows: rows, columns: columns };
|
|
3634
3634
|
};
|