1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00

refactor screen templates to include table name

This commit is contained in:
Peter Clement 2021-11-24 19:26:07 +00:00
parent f9fea88541
commit f8f191570d
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,
}
})
}