mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 21:30:45 +00:00
First pass at permissions; Updated auth0 to work with access token instead of id token
This commit is contained in:
@ -182,7 +182,7 @@ export default class DataGridUtils
|
||||
);
|
||||
}
|
||||
|
||||
if (key === tableMetaData.primaryKeyField)
|
||||
if (key === tableMetaData.primaryKeyField && linkBase)
|
||||
{
|
||||
columns.splice(0, 0, column);
|
||||
column.renderCell = (cellValues: any) => (
|
||||
|
@ -95,8 +95,8 @@ class ValueUtils
|
||||
let tablePath = ValueUtils.getQInstance().getTablePathByName(toRecordFromTable);
|
||||
if (!tablePath)
|
||||
{
|
||||
console.log("Couldn't find path for table: " + tablePath);
|
||||
return ("");
|
||||
console.log("Couldn't find path for table: " + toRecordFromTable);
|
||||
return (displayValue ?? rawValue);
|
||||
}
|
||||
|
||||
if (!tablePath.endsWith("/"))
|
||||
|
Reference in New Issue
Block a user