mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
Resolve new ciphers defaulting to ViewPassword = false, causing passwords to be non editable. (#982)
This commit is contained in:
parent
0980219c8d
commit
c2582fe055
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ namespace Bit.Core.Models.View
|
||||||
public bool Favorite { get; set; }
|
public bool Favorite { get; set; }
|
||||||
public bool OrganizationUseTotp { get; set; }
|
public bool OrganizationUseTotp { get; set; }
|
||||||
public bool Edit { 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 Dictionary<string, object> LocalData { get; set; }
|
||||||
public LoginView Login { get; set; }
|
public LoginView Login { get; set; }
|
||||||
public IdentityView Identity { get; set; }
|
public IdentityView Identity { get; set; }
|
||||||
|
|
Loading…
Reference in a new issue