diff options
Diffstat (limited to 'apps/web/lib')
| -rw-r--r-- | apps/web/lib/attachments.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/apps/web/lib/attachments.tsx b/apps/web/lib/attachments.tsx index 62848d33..ce34b295 100644 --- a/apps/web/lib/attachments.tsx +++ b/apps/web/lib/attachments.tsx @@ -1,4 +1,11 @@ -import { Archive, Camera, Image, Paperclip, Video } from "lucide-react"; +import { + Archive, + Camera, + FileCode, + Image, + Paperclip, + Video, +} from "lucide-react"; import { ZAssetType } from "@karakeep/shared/types/bookmarks"; @@ -10,5 +17,6 @@ export const ASSET_TYPE_TO_ICON: Record<ZAssetType, React.ReactNode> = { bannerImage: <Image className="size-4" />, video: <Video className="size-4" />, bookmarkAsset: <Paperclip className="size-4" />, + linkHtmlContent: <FileCode className="size-4" />, unknown: <Paperclip className="size-4" />, }; |
