From 6e6655608447c4fa71ff8f44115aaba3de55a9d4 Mon Sep 17 00:00:00 2001 From: Simon Nedjari Date: Mon, 9 Sep 2024 11:48:42 +0200 Subject: [PATCH] public type --- server/entities/teamComment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/entities/teamComment.ts b/server/entities/teamComment.ts index 0453fa2a2..4e4676985 100644 --- a/server/entities/teamComment.ts +++ b/server/entities/teamComment.ts @@ -8,7 +8,7 @@ export class TeamComment implements TeamCommentInterface { public id: number; @Column({ type: 'tinyint' }) - type: TeamCommentType; + public type: TeamCommentType; @CreateDateColumn() public createDate: Date;