diff --git a/frontend/src/views/SettingsView.vue b/frontend/src/views/SettingsView.vue index 1245690..878ae8e 100644 --- a/frontend/src/views/SettingsView.vue +++ b/frontend/src/views/SettingsView.vue @@ -522,8 +522,10 @@ onMounted(async () => { // base URL not configured yet } if (activeTab.value === "groups") loadGroupsPanel(); - if (activeTab.value === "briefing") loadBriefingTab(); + if (activeTab.value === "users") loadUsersPanel(); + if (activeTab.value === "logs") loadLogsPanel(); } + if (activeTab.value === "briefing") loadBriefingTab(); if (activeTab.value === "apikeys") { fetchApiKeys(); loadMcpInfo(); } });