diff --git a/src/App/Models/Page/VaultListPageModel.cs b/src/App/Models/Page/VaultListPageModel.cs index 8b51a5d0b..b1fc3ec23 100644 --- a/src/App/Models/Page/VaultListPageModel.cs +++ b/src/App/Models/Page/VaultListPageModel.cs @@ -172,7 +172,11 @@ namespace Bit.App.Models.Page { AddRange(groupItems); - if(doUpper) + if(string.IsNullOrWhiteSpace(Name)) + { + Name = "-"; + } + else if(doUpper) { Name = name.ToUpperInvariant(); }