From 19c46a472af6b0d56747fd5d5a4259d412ae24e2 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 16 Jul 2018 10:24:53 -0400 Subject: [PATCH] fix name bug on section group names --- src/App/Models/Page/VaultListPageModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Models/Page/VaultListPageModel.cs b/src/App/Models/Page/VaultListPageModel.cs index b1fc3ec23..c36f4d834 100644 --- a/src/App/Models/Page/VaultListPageModel.cs +++ b/src/App/Models/Page/VaultListPageModel.cs @@ -172,7 +172,7 @@ namespace Bit.App.Models.Page { AddRange(groupItems); - if(string.IsNullOrWhiteSpace(Name)) + if(string.IsNullOrWhiteSpace(name)) { Name = "-"; }