From c19795cce0fcebc497dbdeb68f91934b03e2d17c Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Mon, 16 Mar 2020 11:17:45 -0500 Subject: [PATCH] Fix bug with policy banner visibility (#777) Co-authored-by: Vincent Salucci --- src/Core/Models/Domain/PasswordGeneratorPolicyOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Models/Domain/PasswordGeneratorPolicyOptions.cs b/src/Core/Models/Domain/PasswordGeneratorPolicyOptions.cs index b163f67a7..70a844fc0 100644 --- a/src/Core/Models/Domain/PasswordGeneratorPolicyOptions.cs +++ b/src/Core/Models/Domain/PasswordGeneratorPolicyOptions.cs @@ -2,7 +2,7 @@ { public class PasswordGeneratorPolicyOptions { - public string DefaultType { get; set; } + public string DefaultType { get; set; } = ""; public int MinLength { get; set; } public bool UseUppercase { get; set; } public bool UseLowercase { get; set; }