Skip to content

Commit efc9371

Browse files
committed
fix: review comments
1 parent fbe4a61 commit efc9371

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/api/ai-workflow/ai-workflow.service.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,11 @@ export class AiWorkflowService {
811811
const items = await this.prisma.aiWorkflowRunItem.findMany({
812812
where: { workflowRunId: runId },
813813
include: {
814-
comments: true,
814+
comments: {
815+
include: {
816+
votes: true,
817+
}
818+
},
815819
votes: true,
816820
},
817821
orderBy: {

0 commit comments

Comments
 (0)