diff --git a/backend/src/services/hocuspocus-server.js b/backend/src/services/hocuspocus-server.js index cd34af3..6a9dc7b 100644 --- a/backend/src/services/hocuspocus-server.js +++ b/backend/src/services/hocuspocus-server.js @@ -39,7 +39,7 @@ const hocuspocusServer = Server.configure({ }, }); - if (!comment) resolve(null); + if (!comment || !comment?.commentRaw) resolve(null); const commentAsUnit8Array = new Uint8Array(comment.commentRaw); resolve(commentAsUnit8Array.length === 0 ? null : commentAsUnit8Array); diff --git a/frontend/components/KanbanBoard/Item/index.tsx b/frontend/components/KanbanBoard/Item/index.tsx index c97467e..6edacde 100644 --- a/frontend/components/KanbanBoard/Item/index.tsx +++ b/frontend/components/KanbanBoard/Item/index.tsx @@ -98,7 +98,7 @@ const Items = ({ id, title, project }: ItemsType) => { } >
-
{title}
+
{issueData.title}
{issueData?.tags && (