Skip to content

Commit

Permalink
Ensure results are cleared if query is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
dkgv committed Oct 18, 2023
1 parent 42b047d commit 3209ff2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Pinpoint.Win/Views/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ private async Task UpdateResults()
var query = new Query(TxtQuery.Text.Trim());
if (query.IsEmpty)
{
Model.Results.Clear();
return;
}

Expand Down

0 comments on commit 3209ff2

Please sign in to comment.