mirror of
https://github.com/bitwarden/android.git
synced 2024-12-20 16:21:55 +03:00
Do not show no data message when searching and no results.
This commit is contained in:
parent
24722d3644
commit
dbd697a473
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
private void AdjustContent()
|
private void AdjustContent()
|
||||||
{
|
{
|
||||||
if(PresentationFolders.Count > 0)
|
if(PresentationFolders.Count > 0 || !string.IsNullOrWhiteSpace(Search.Text))
|
||||||
{
|
{
|
||||||
Content = ResultsStackLayout;
|
Content = ResultsStackLayout;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue