Skip to content

Commit

Permalink
refresh tag list when clearing filter (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
casimir authored Jan 3, 2024
1 parent de2bc98 commit 177cf1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pages/tags_selector/dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class _TagsSelectorDialogState extends State<TagsSelectorDialog> {
hintText: 'Search',
prefixIcon: const Icon(Icons.search),
suffixIcon: IconButton(
onPressed: _searchController.clear,
icon: const Icon(Icons.clear),
onPressed: () => setState(_searchController.clear),
icon: const Icon(Icons.backspace_outlined),
),
),
autocorrect: false,
Expand Down

0 comments on commit 177cf1c

Please sign in to comment.