Skip to content

Commit ca247f8

Browse files
Dumbrisclaude
andcommitted
chore(frontend): temporarily disable Activity Log in web UI
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 <noreply@anthropic.com>
1 parent 4c4d070 commit ca247f8

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

frontend/src/components/SidebarNav.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ const menuItems = [
7777
{ name: 'Secrets', path: '/secrets' },
7878
{ name: 'Search', path: '/search' },
7979
{ name: 'Tool Call History', path: '/tool-calls' },
80-
{ name: 'Activity Log', path: '/activity' },
80+
// TODO: Re-enable in next release
81+
// { name: 'Activity Log', path: '/activity' },
8182
{ name: 'Repositories', path: '/repositories' },
8283
{ name: 'Configuration', path: '/settings' },
8384
]

frontend/src/views/Dashboard.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@
141141
</div>
142142

143143

144-
<!-- Activity Widget -->
145-
<ActivityWidget />
144+
<!-- TODO: Re-enable Activity Widget in next release -->
145+
<!-- <ActivityWidget /> -->
146146

147147
<!-- Recent Sessions -->
148148
<div class="card bg-base-100 shadow-md">
@@ -329,7 +329,8 @@ import { useSystemStore } from '@/stores/system'
329329
import api from '@/services/api'
330330
import CollapsibleHintsPanel from '@/components/CollapsibleHintsPanel.vue'
331331
import TokenPieChart from '@/components/TokenPieChart.vue'
332-
import ActivityWidget from '@/components/ActivityWidget.vue'
332+
// TODO: Re-enable in next release
333+
// import ActivityWidget from '@/components/ActivityWidget.vue'
333334
import type { Hint } from '@/components/CollapsibleHintsPanel.vue'
334335
335336
const serversStore = useServersStore()

0 commit comments

Comments
 (0)