1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-21 11:25:56 +01:00

Do not show no data message when searching and no results.

This commit is contained in:
Kyle Spearrin 2016-09-06 00:34:27 -04:00
parent 24722d3644
commit dbd697a473

View File

@ -258,7 +258,7 @@ namespace Bit.App.Pages
private void AdjustContent()
{
if(PresentationFolders.Count > 0)
if(PresentationFolders.Count > 0 || !string.IsNullOrWhiteSpace(Search.Text))
{
Content = ResultsStackLayout;
}