diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-01-05 15:08:44 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-01-05 15:08:44 +0000 |
| commit | 12cb8c5c284e766992e2154de185f6e1062fe045 (patch) | |
| tree | 7d3594f421f6f315b539c0afd26660008c6831d8 /apps/web/components/dashboard/bookmarks | |
| parent | c98722c4781379c680d9ec9efc066e555bad318c (diff) | |
| download | karakeep-12cb8c5c284e766992e2154de185f6e1062fe045.tar.zst | |
fix: Fix truncated long text in bookmark preview modal. Fixe #793
Diffstat (limited to 'apps/web/components/dashboard/bookmarks')
| -rw-r--r-- | apps/web/components/dashboard/bookmarks/BookmarkMarkdownComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/bookmarks/BookmarkMarkdownComponent.tsx b/apps/web/components/dashboard/bookmarks/BookmarkMarkdownComponent.tsx index 74eb0868..60a6d634 100644 --- a/apps/web/components/dashboard/bookmarks/BookmarkMarkdownComponent.tsx +++ b/apps/web/components/dashboard/bookmarks/BookmarkMarkdownComponent.tsx @@ -30,7 +30,7 @@ export function BookmarkMarkdownComponent({ });
};
return (
- <div className="h-full overflow-hidden">
+ <div className="h-full">
{readOnly ? (
<MarkdownReadonly>{bookmark.content.text}</MarkdownReadonly>
) : (
|
