diff options
| author | Md Saban <45597394+mdsaban@users.noreply.github.com> | 2024-07-02 03:51:23 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-01 23:21:23 +0100 |
| commit | d193d9bf89e8a88bf70b673ea5e438d73cf40c0c (patch) | |
| tree | 56d260c0624b74bda054f8865c3bd2e166f49e8d /apps/web/components/dashboard/ChangeLayout.tsx | |
| parent | bf92fa3386be331871963f99ec5c813186a388b3 (diff) | |
| download | karakeep-d193d9bf89e8a88bf70b673ea5e438d73cf40c0c.tar.zst | |
feat: Add bulk edit option for bookmarks. Fixes #84 (#259)
* feat: add bulk edit option for bookmarks
* fix: resolve comments
* fix: resolve comments
* fix: resolve comments
* fix: resolve comments
* rename bulk action store, simplify the bulk action toolbar
---------
Co-authored-by: MohamedBassem <me@mbassem.com>
Diffstat (limited to 'apps/web/components/dashboard/ChangeLayout.tsx')
| -rw-r--r-- | apps/web/components/dashboard/ChangeLayout.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/web/components/dashboard/ChangeLayout.tsx b/apps/web/components/dashboard/ChangeLayout.tsx index 59acb6bd..7449bd2d 100644 --- a/apps/web/components/dashboard/ChangeLayout.tsx +++ b/apps/web/components/dashboard/ChangeLayout.tsx @@ -1,7 +1,7 @@ "use client"; import React from "react"; -import { Button } from "@/components/ui/button"; +import { ButtonWithTooltip } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, @@ -20,15 +20,19 @@ const iconMap = { list: LayoutList, }; -export default function SidebarProfileOptions() { +export default function ChangeLayout() { const layout = useBookmarkLayout(); return ( <DropdownMenu> <DropdownMenuTrigger asChild> - <Button variant="outline"> + <ButtonWithTooltip + tooltip="Change layout" + delayDuration={100} + variant="ghost" + > {React.createElement(iconMap[layout], { size: 18 })} - </Button> + </ButtonWithTooltip> </DropdownMenuTrigger> <DropdownMenuContent className="w-fit"> {Object.keys(iconMap).map((key) => ( |
