From 27efd8c386db5dfad9f0cbbe0f094972d398499b Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 4 Jun 2025 16:36:12 +0200 Subject: [PATCH] Add file browser menu item to dashboard Added new navigation entry to the interest menu with: - Route: /dashboard/file-browser - Icon: mdi-folder - Title: File Browser This enables users to access the file browser feature from the dashboard navigation menu. --- pages/dashboard.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/dashboard.vue b/pages/dashboard.vue index e32de64..867c3fb 100644 --- a/pages/dashboard.vue +++ b/pages/dashboard.vue @@ -102,6 +102,11 @@ const interestMenu = [ icon: "mdi-account-check", title: "Interest Status", }, + { + to: "/dashboard/file-browser", + icon: "mdi-folder", + title: "File Browser", + }, ];