mirror of
https://github.com/bitwarden/mobile
synced 2024-12-27 17:23:54 +01:00
Use correct icon for checked/unchecked boolean (#1986)
Closes https://github.com/bitwarden/mobile/issues/1985
This commit is contained in:
parent
67f49a0591
commit
75e8276784
@ -750,7 +750,7 @@ namespace Bit.App.Pages
|
||||
{
|
||||
if (IsBooleanType)
|
||||
{
|
||||
return _field.Value == "true" ? BitwardenIcons.Square : BitwardenIcons.CheckSquare;
|
||||
return _field.Value == "true" ? BitwardenIcons.CheckSquare : BitwardenIcons.Square;
|
||||
}
|
||||
else if (IsLinkedType)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user