1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-01 04:27:39 +02:00

copy to remove no folder from list

This commit is contained in:
Kyle Spearrin 2019-05-30 15:20:04 -04:00
parent 60f81c5cba
commit 6838b32304

View File

@ -38,7 +38,7 @@ namespace Bit.App.Pages
// Remove "No Folder"
if(folders?.Any() ?? false)
{
folders.Remove(folders.Last());
folders = folders.GetRange(0, folders.Count - 1);
}
Folders.ResetWithRange(folders ?? new List<FolderView>());
ShowNoData = Folders.Count == 0;