From e38c64c70ce2c1cf22e9bec7a39d5a1da0910165 Mon Sep 17 00:00:00 2001 From: Luis Novo Date: Mon, 16 Feb 2026 14:54:25 -0300 Subject: [PATCH] fix: add word-break to note title and content in notes list Long unbroken strings in note titles and content overflow the card boundaries in the Notes column. Add break-all so text wraps properly. --- .../src/app/(dashboard)/notebooks/components/NotesColumn.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/(dashboard)/notebooks/components/NotesColumn.tsx b/frontend/src/app/(dashboard)/notebooks/components/NotesColumn.tsx index 05e39b2..bb915f2 100644 --- a/frontend/src/app/(dashboard)/notebooks/components/NotesColumn.tsx +++ b/frontend/src/app/(dashboard)/notebooks/components/NotesColumn.tsx @@ -179,11 +179,11 @@ export function NotesColumn({ {note.title && ( -

{note.title}

+

{note.title}

)} {note.content && ( -

+

{note.content}

)}