Skip to content

Commit 21dbf06

Browse files
committed
fix(dashboard): update summary card information
- Change topic count to headline count - Update icon from category to newspaper - Modify title to reflect total headlines instead of topics
1 parent 26afc33 commit 21dbf06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/dashboard/view/dashboard_page.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class _DashboardPageState extends State<DashboardPage> {
6262

6363
final summaryCards = [
6464
_SummaryCard(
65-
icon: Icons.category_outlined,
66-
title: l10n.totalTopics,
67-
value: summary.topicCount.toString(),
65+
icon: Icons.newspaper_outlined,
66+
title: l10n.totalHeadlines,
67+
value: summary.headlineCount.toString(),
6868
),
6969
_SummaryCard(
7070
icon: Icons.category_outlined,

0 commit comments

Comments
 (0)