From 939db8ebe02673537a559add09394d443a7948ed Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Mon, 24 Jan 2022 14:19:30 -0300 Subject: [PATCH] Fix icon update on verify code view (#1728) --- src/App/Pages/Accounts/VerificationCodePage.xaml | 2 +- src/App/Pages/Accounts/VerificationCodeViewModel.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/App/Pages/Accounts/VerificationCodePage.xaml b/src/App/Pages/Accounts/VerificationCodePage.xaml index 3fe2b643e..6cba50558 100644 --- a/src/App/Pages/Accounts/VerificationCodePage.xaml +++ b/src/App/Pages/Accounts/VerificationCodePage.xaml @@ -62,7 +62,7 @@ Grid.Column="0" ReturnType="Go" ReturnCommand="{Binding MainActionCommand}" /> - ShowPassword ? "" : ""; + public string ShowPasswordIcon => ShowPassword ? BitwardenIcons.EyeSlash : BitwardenIcons.Eye; public void TogglePassword() => ShowPassword = !ShowPassword;