From c778ab3cf29472c6ac34cc02a714616eec01cc97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 30 Aug 2026 20:41:05 +0200 Subject: [PATCH] Add a title to the device usage table card on Stats Matches the "History"/"Known devices" card-title pattern used on the Sessions and Devices pages. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01WzyfRyA7h5rs5SCAahLAWd --- components/stats/DeviceUsageTable.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/components/stats/DeviceUsageTable.tsx b/components/stats/DeviceUsageTable.tsx index 8ab1a9e..57bf0df 100644 --- a/components/stats/DeviceUsageTable.tsx +++ b/components/stats/DeviceUsageTable.tsx @@ -1,4 +1,4 @@ -import { Card, CardContent } from "@/components/ui/card"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"; export interface DeviceUsageRow { @@ -15,6 +15,9 @@ export function DeviceUsageTable({ devices }: { devices: DeviceUsageRow[] }) { if (devices.length === 0) { return ( + + Device usage + No device activity yet. ); @@ -22,6 +25,9 @@ export function DeviceUsageTable({ devices }: { devices: DeviceUsageRow[] }) { return ( + + Device usage +