Browse Source

fix: missing conditionV2 (#8736)

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/8737/head
Mert E 2 weeks ago committed by GitHub
parent
commit
f5f4e8c388
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      packages/nocodb/src/db/BaseModelSqlv2.ts

5
packages/nocodb/src/db/BaseModelSqlv2.ts

@ -7184,7 +7184,7 @@ class BaseModelSqlv2 {
);
}
async getCustomConditionsAndApply(_params: {
async getCustomConditionsAndApply(params: {
view?: View;
column: Column<any>;
qb?;
@ -7193,7 +7193,8 @@ class BaseModelSqlv2 {
rowId;
columns?: Column[];
}): Promise<any> {
return;
const { filters, qb } = params;
await conditionV2(this, filters, qb);
}
}

Loading…
Cancel
Save