[Icons] Fast follower changes (#1750)

This commit is contained in:
Vincent Salucci 2022-02-03 10:34:20 -06:00 committed by GitHub
parent 63b27f4e6d
commit 4373cee636
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -165,7 +165,7 @@
IsVisible="{Binding Cipher.ViewPassword}" /> IsVisible="{Binding Cipher.ViewPassword}" />
<controls:IconButton <controls:IconButton
StyleClass="box-row-button, box-row-button-platform" StyleClass="box-row-button, box-row-button-platform"
Text="{Binding Source={x:Static core:BitwardenIcons.Refresh}}" Text="{Binding Source={x:Static core:BitwardenIcons.Generate}}"
Command="{Binding GeneratePasswordCommand}" Command="{Binding GeneratePasswordCommand}"
Grid.Row="0" Grid.Row="0"
Grid.Column="3" Grid.Column="3"

View file

@ -76,7 +76,7 @@ namespace Bit.App.Pages
} }
else if (Folder != null) else if (Folder != null)
{ {
_icon = Folder.Id == null ? BitwardenIcons.FolderOpen : BitwardenIcons.FolderOpenF; _icon = BitwardenIcons.Folder;
} }
else if (Collection != null) else if (Collection != null)
{ {