Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/App/Models/Page/VaultViewCipherPageModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public bool RevealLoginPassword
}
}
public string MaskedLoginPassword => RevealLoginPassword ?
LoginPassword : LoginPassword == null ? null : new string('•', LoginPassword.Length);
LoginPassword : LoginPassword == null ? null : new string('•', 8);
public ImageSource LoginShowHideImage => RevealLoginPassword ?
ImageSource.FromFile("eye_slash.png") : ImageSource.FromFile("eye.png");

Expand Down Expand Up @@ -622,7 +622,7 @@ public string MaskedValue
{
if(_maskedValue == null && Value != null)
{
_maskedValue = new string('•', Value.Length);
_maskedValue = new string('•', 8);
}

return _maskedValue;
Expand Down