From 9c7eb395639360eb15c8f9ce932efffc3e29043f Mon Sep 17 00:00:00 2001 From: Claudemir Todo Bom Date: Wed, 22 May 2024 17:01:57 -0300 Subject: [PATCH] Fix tag creation on chat screen - fix #47 --- backend/src/controllers/TagController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/controllers/TagController.ts b/backend/src/controllers/TagController.ts index e8ac16a4..094cd8f3 100644 --- a/backend/src/controllers/TagController.ts +++ b/backend/src/controllers/TagController.ts @@ -41,7 +41,7 @@ export const store = async (req: Request, res: Response): Promise => { const tag = await CreateService({ name, color, - kanban, + kanban: kanban || null, companyId });