diff options
| author | Siddarth Pai <[email protected]> | 2024-07-27 00:00:34 +0530 |
|---|---|---|
| committer | Siddarth Pai <[email protected]> | 2024-07-27 00:00:34 +0530 |
| commit | e3a764d06fcb673c8c4c3a8c23957dfde05ba85b (patch) | |
| tree | 9ccd01e25ad16c55df34d5f6a0231d17d37066a3 | |
| parent | Merge pull request #140 from supermemoryai/kush/experimental-thread (diff) | |
| download | supermemory-e3a764d06fcb673c8c4c3a8c23957dfde05ba85b.tar.xz supermemory-e3a764d06fcb673c8c4c3a8c23957dfde05ba85b.zip | |
fixes for issue #168
| -rw-r--r-- | apps/web/app/(dash)/(memories)/content.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(dash)/(memories)/content.tsx b/apps/web/app/(dash)/(memories)/content.tsx index fea4477a..baee9e44 100644 --- a/apps/web/app/(dash)/(memories)/content.tsx +++ b/apps/web/app/(dash)/(memories)/content.tsx @@ -287,7 +287,7 @@ function LinkComponent({ <div className="text-lg text-[#fff] mt-4 line-clamp-2"> {title.replace(/(<---chunkId: .*?\n.*?\n---->)/g, "")} </div> - <div> + <div className="overflow-hidden text-ellipsis whitespace-nowrap"> {url.replace("https://supermemory.ai", "").split("#")[0] ?? "/"} </div> </> |