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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{