1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Fixing issue with using 'ta' in view name.

This commit is contained in:
mike12345567 2021-09-02 17:49:21 +01:00
parent 2148bf6da4
commit b17e9aa5e4

View file

@ -133,7 +133,7 @@ exports.fetchView = async ctx => {
const viewName = ctx.params.viewName
// if this is a table view being looked for just transfer to that
if (viewName.includes(DocumentTypes.TABLE)) {
if (viewName.startsWith(DocumentTypes.TABLE)) {
ctx.params.tableId = viewName
return exports.fetch(ctx)
}