Browse Source

fix: missing await

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/6817/head
Pranav C 11 months ago
parent
commit
a1f489a712
  1. 2
      packages/nocodb/src/db/BaseModelSqlv2.ts

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

@ -2632,7 +2632,7 @@ class BaseModelSqlv2 {
await Promise.all(postInsertOps.map((f) => f()));
response = this.readByPk(
response = await this.readByPk(
rowId,
false,
{},

Loading…
Cancel
Save