Browse Source

Fixing issue with using 'ta' in view name.

pull/2531/head
mike12345567 5 years ago
parent
commit
4fae8b2b1e
  1. 2
      packages/server/src/api/controllers/row/internal.js

2
packages/server/src/api/controllers/row/internal.js

@ -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)
}

Loading…
Cancel
Save