Browse Source

fix: snapshot fixes

pull/9879/head
DarkPhoenix2704 9 hours ago
parent
commit
c1ce620532
  1. 10
      packages/nocodb/src/models/Comment.ts

10
packages/nocodb/src/models/Comment.ts

@ -64,14 +64,16 @@ export default class Comment implements CommentType {
},
limit: READ_BATCH_SIZE + 1,
offset,
xcCondition: [
xcCondition:
{
_or: [
{ is_deleted: null },
{ is_deleted: false },
{ is_deleted: { eq: null } },
{ is_deleted: {
eq: true
} },
]
}
]
}
);

Loading…
Cancel
Save