From ca247f83c59a4b8189ecf9aef93d254d6669edf2 Mon Sep 17 00:00:00 2001 From: Algis Dumbris Date: Wed, 7 Jan 2026 20:14:41 +0200 Subject: [PATCH] chore(frontend): temporarily disable Activity Log in web UI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Comment out Activity Log menu item and dashboard widget for next release. The REST API and backend functionality remain intact. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/components/SidebarNav.vue | 3 ++- frontend/src/views/Dashboard.vue | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/SidebarNav.vue b/frontend/src/components/SidebarNav.vue index aa520140..fcad6ccb 100644 --- a/frontend/src/components/SidebarNav.vue +++ b/frontend/src/components/SidebarNav.vue @@ -77,7 +77,8 @@ const menuItems = [ { name: 'Secrets', path: '/secrets' }, { name: 'Search', path: '/search' }, { name: 'Tool Call History', path: '/tool-calls' }, - { name: 'Activity Log', path: '/activity' }, + // TODO: Re-enable in next release + // { name: 'Activity Log', path: '/activity' }, { name: 'Repositories', path: '/repositories' }, { name: 'Configuration', path: '/settings' }, ] diff --git a/frontend/src/views/Dashboard.vue b/frontend/src/views/Dashboard.vue index 7e53453f..7da746ec 100644 --- a/frontend/src/views/Dashboard.vue +++ b/frontend/src/views/Dashboard.vue @@ -141,8 +141,8 @@ - - + +
@@ -329,7 +329,8 @@ import { useSystemStore } from '@/stores/system' import api from '@/services/api' import CollapsibleHintsPanel from '@/components/CollapsibleHintsPanel.vue' import TokenPieChart from '@/components/TokenPieChart.vue' -import ActivityWidget from '@/components/ActivityWidget.vue' +// TODO: Re-enable in next release +// import ActivityWidget from '@/components/ActivityWidget.vue' import type { Hint } from '@/components/CollapsibleHintsPanel.vue' const serversStore = useServersStore()