refactor screen templates to include table name

This commit is contained in:
Peter Clement 2021-11-24 19:26:07 +00:00
parent 7e65edfc5a
commit 9e0ab7373d
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ export default function (tables) {
name: `${table.name} - New`,
create: () => createScreen(table),
id: NEW_ROW_TEMPLATE,
table: table.name
table: table.name,
}
})
}

View File

@ -17,7 +17,7 @@ export default function (tables) {
name: `${table.name} - Detail`,
create: () => createScreen(table),
id: ROW_DETAIL_TEMPLATE,
table: table.name
table: table.name,
}
})
}

View File

@ -10,7 +10,7 @@ export default function (tables) {
name: `${table.name} - List`,
create: () => createScreen(table),
id: ROW_LIST_TEMPLATE,
table: table.name
table: table.name,
}
})
}