1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 11:13:49 +00:00

Use correct icon for checked/unchecked boolean (#1986)

Closes https://github.com/bitwarden/mobile/issues/1985
This commit is contained in:
Patrick H. Lauke
2022-07-11 14:48:19 +01:00
committed by GitHub
parent 67f49a0591
commit 75e8276784

View File

@@ -750,7 +750,7 @@ namespace Bit.App.Pages
{ {
if (IsBooleanType) if (IsBooleanType)
{ {
return _field.Value == "true" ? BitwardenIcons.Square : BitwardenIcons.CheckSquare; return _field.Value == "true" ? BitwardenIcons.CheckSquare : BitwardenIcons.Square;
} }
else if (IsLinkedType) else if (IsLinkedType)
{ {