Skip to content

Commit

Permalink
fix: Clear search when description is added through item page
Browse files Browse the repository at this point in the history
  • Loading branch information
TomBursch committed Dec 12, 2023
1 parent 457ea55 commit 2ee1588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/household_page/shoppinglist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class _ShoppinglistPageState extends State<ShoppinglistPage> {
household: BlocProvider.of<HouseholdCubit>(context)
.state
.household,
onRefresh: cubit.refresh,
onRefresh: () => cubit.refresh(query: ""),
selected: (item) =>
item is ShoppinglistItem &&
(App.settings.shoppingListTapToRemove ||
Expand Down

0 comments on commit 2ee1588

Please sign in to comment.