Browse Source

fix(nocodb): revise filterId to string type

pull/5670/head
Wing-Kam Wong 2 years ago
parent
commit
d5262c1e9c
  1. 2
      packages/nocodb/src/services/filters.service.ts

2
packages/nocodb/src/services/filters.service.ts

@ -51,7 +51,7 @@ export class FiltersService {
return filter;
}
async filterChildrenList(param: { filterId: any }) {
async filterChildrenList(param: { filterId: string }) {
return Filter.parentFilterList({
parentId: param.filterId,
});

Loading…
Cancel
Save