mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 05:10:45 +00:00
Update to get back processes in metaData; add actions menu to entity-list; fix routing directly to entity lists
This commit is contained in:
@ -391,13 +391,12 @@ console.log(qController);
|
||||
|
||||
(async () => {
|
||||
const metaData = await qController.loadMetaData();
|
||||
console.log(`metaData: ${metaData}`);
|
||||
|
||||
// get the keys sorted
|
||||
const keys = [...metaData.keys()].sort();
|
||||
const keys = [...metaData.tables.keys()].sort();
|
||||
const tableList = [] as any[];
|
||||
keys.forEach((key) => {
|
||||
const table = metaData.get(key);
|
||||
const table = metaData.tables.get(key);
|
||||
tableList.push({
|
||||
name: table.label,
|
||||
key: table.name,
|
||||
|
Reference in New Issue
Block a user