You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(ui): color Agent Activity KPI numbers and add user selection hint (#352)
* feat(ui): color Agent Activity KPI numbers and add user selection hint
- AgentActivityViewer: apply Vuetify semantic colors to KPI values
- Lines of code changed: text-primary (blue)
- Agent contribution %: text-success (green)
- Avg lines deleted: text-warning (orange)
Matches the color pattern used in SeatsAnalysisViewer and MetricsViewer.
- UserMetricsViewer: add info alert in User Insights section when no
user is selected, prompting users to click a row in the table above
to drill down into individual usage details.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* fix(teams): replace broken team link with deselect button, add loading overlay
- Comparison cards: replace 'mdi-open-in-new' link (pointing to removed
/enterprises/:ent/teams/:slug route) with an [x] close button that
removes the team from the selection
- Single-team header: replace 'View Team' external link with a red
'Deselect' button that clears the team selection
- Add v-overlay with spinner that locks the UI during data fetching
(updateChartData now sets isLoading=true/false with try/finally)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* chore: bump version to 3.4.1
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: app/components/UserMetricsViewer.vue
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -311,6 +311,19 @@
311
311
</div>
312
312
313
313
<v-row>
314
+
<!-- Empty state when no user selected -->
315
+
<v-colv-if="!selectedUser"cols="12">
316
+
<v-alert
317
+
type="info"
318
+
variant="tonal"
319
+
density="compact"
320
+
icon="mdi-cursor-pointer"
321
+
class="mb-2"
322
+
>
323
+
<strong>Select a user</strong> from the table above to see their individual usage details, language breakdown, model preferences, and activity history.
0 commit comments