Browse Source

harbour: Disable add feed button in news add feed dialog until folders are loaded

pull/27/head
jld3103 2 years ago
parent
commit
3d1c24eb58
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      packages/harbour/lib/src/apps/news/dialogs/add_feed.dart

2
packages/harbour/lib/src/apps/news/dialogs/add_feed.dart

@ -85,7 +85,7 @@ class _NewsAddFeedDialogState extends State<NewsAddFeedDialog> {
], ],
], ],
ElevatedButton( ElevatedButton(
onPressed: submit, onPressed: foldersData != null ? submit : null,
child: Text(AppLocalizations.of(context).newsAddFeed), child: Text(AppLocalizations.of(context).newsAddFeed),
), ),
], ],

Loading…
Cancel
Save