mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-19 05:40:44 +00:00
CE-1120: updated to handle errors on join tables (specifically was happening with deposco customer orders)
This commit is contained in:
@ -110,7 +110,7 @@ class TableUtils
|
||||
return ([tableMetaData.fields.get(fieldName), tableMetaData]);
|
||||
}
|
||||
|
||||
return (null);
|
||||
return [null, null];
|
||||
}
|
||||
|
||||
|
||||
@ -133,7 +133,7 @@ class TableUtils
|
||||
catch (e)
|
||||
{
|
||||
console.log(`Error getting full field label for ${fieldName} in table ${tableMetaData?.name}: ${e}`);
|
||||
return fieldName
|
||||
return fieldName;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user