Skip to content

Commit

Permalink
Fix the thabloids drawer (#514)
Browse files Browse the repository at this point in the history
This makes sure it actually becomes magenta and has a nicer icon
  • Loading branch information
JAicewizard authored Sep 1, 2024
1 parent 6498699 commit 5ebf890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ui/widgets/menu_drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ class MenuDrawer extends StatelessWidget {
),
ListTile(
title: const Text('Thabloids'),
leading: const Icon(Icons.photo),
leading: const Icon(Icons.article_outlined),
selected: GoRouterState.of(context).uri.toString() ==
'thabloid/thabloids',
'/thabloid/thabloids',
onTap: () {
if (GoRouterState.of(context).uri.toString() ==
'thabloid/thabloids') {
Expand Down

0 comments on commit 5ebf890

Please sign in to comment.