Merge branch 'dev' into US-06-VerinformaciónAdministradordeSistema

This commit is contained in:
Mariela 2022-08-19 17:51:41 -06:00
commit fb85b4a277
1 changed files with 5 additions and 1 deletions

View File

@ -708,7 +708,11 @@ const Communities = () => {
const tenantsBodyTemplate = (rowData) => {
let tenants = rowData.tenants;
let name = findNameTenant(tenants.tenant_id);
let name = 'Sin inquilino';
if (rowData.tenants) {
name = findNameTenant(tenants.tenant_id);
}
return (
<>
{name}