Resolve new ciphers defaulting to ViewPassword = false, causing passwords to be non editable. (#982)

This commit is contained in:
Oscar Hinton 2020-06-15 18:33:36 +02:00 committed by GitHub
parent 0980219c8d
commit c2582fe055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ namespace Bit.Core.Models.View
public bool Favorite { get; set; }
public bool OrganizationUseTotp { get; set; }
public bool Edit { get; set; }
public bool ViewPassword { get; set; }
public bool ViewPassword { get; set; } = true;
public Dictionary<string, object> LocalData { get; set; }
public LoginView Login { get; set; }
public IdentityView Identity { get; set; }