Browse Source

fix(nocodb): tableId -> hookId in hook.ctl.ts

pull/5349/head
Wing-Kam Wong 2 years ago
parent
commit
41c5e83d53
  1. 2
      packages/nocodb/src/lib/controllers/hook.ctl.ts

2
packages/nocodb/src/lib/controllers/hook.ctl.ts

@ -69,7 +69,7 @@ export async function hookLogList(
) {
res.json(
new PagedResponseImpl(
await hookService.hookLogList({ tableId: req.params.hookId })
await hookService.hookLogList({ hookId: req.params.hookId })
)
);
}

Loading…
Cancel
Save