Browse Source

fix(nocodb): add missing Param filterParentId

pull/5670/head
Wing-Kam Wong 2 years ago
parent
commit
088c12b352
  1. 2
      packages/nocodb/src/controllers/filters.controller.ts

2
packages/nocodb/src/controllers/filters.controller.ts

@ -71,7 +71,7 @@ export class FiltersController {
@Get('/api/v1/db/meta/filters/:filterParentId/children') @Get('/api/v1/db/meta/filters/:filterParentId/children')
@Acl('filterChildrenList') @Acl('filterChildrenList')
async filterChildrenRead(filterParentId: string) { async filterChildrenRead(@Param('filterParentId') filterParentId: string) {
return new PagedResponseImpl( return new PagedResponseImpl(
await this.filtersService.filterChildrenList({ await this.filtersService.filterChildrenList({
filterId: filterParentId, filterId: filterParentId,

Loading…
Cancel
Save