aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/GlobalActions.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-07-26 12:58:01 +0000
committerMohamed Bassem <me@mbassem.com>2025-07-26 12:58:01 +0000
commit154efe17421ca96d433fcc1f820ad460e1675bdc (patch)
tree4336090648fe7196818bcc371104d3b603a68c0e /apps/web/components/dashboard/GlobalActions.tsx
parent8b4fb49cc066eef602d9d089e7b71d183231a8fd (diff)
downloadkarakeep-154efe17421ca96d433fcc1f820ad460e1675bdc.tar.zst
feat: Configurable number of grid columns. Fixes #1713
Diffstat (limited to 'apps/web/components/dashboard/GlobalActions.tsx')
-rw-r--r--apps/web/components/dashboard/GlobalActions.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/dashboard/GlobalActions.tsx b/apps/web/components/dashboard/GlobalActions.tsx
index ecbb70bf..d36b93d9 100644
--- a/apps/web/components/dashboard/GlobalActions.tsx
+++ b/apps/web/components/dashboard/GlobalActions.tsx
@@ -1,13 +1,13 @@
"use client";
import BulkBookmarksAction from "@/components/dashboard/BulkBookmarksAction";
-import ChangeLayout from "@/components/dashboard/ChangeLayout";
import SortOrderToggle from "@/components/dashboard/SortOrderToggle";
+import ViewOptions from "@/components/dashboard/ViewOptions";
export default function GlobalActions() {
return (
<div className="flex min-w-max flex-wrap overflow-hidden">
- <ChangeLayout />
+ <ViewOptions />
<SortOrderToggle />
<BulkBookmarksAction />
</div>