From 2d126300d8066303b25f91493cd6706b62f26588 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 23 Oct 2017 13:08:46 -0400 Subject: [PATCH] set placeholder first --- src/App/Controls/VaultListViewCell.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Controls/VaultListViewCell.cs b/src/App/Controls/VaultListViewCell.cs index 5b4e7b01e..ced38c8bf 100644 --- a/src/App/Controls/VaultListViewCell.cs +++ b/src/App/Controls/VaultListViewCell.cs @@ -39,11 +39,11 @@ namespace Bit.App.Controls Icon.Source = null; if(BindingContext is VaultListPageModel.Cipher item) { - Icon.Source = item.Icon; if(item.Type == Enums.CipherType.Login) { Icon.LoadingPlaceholder = "login.png"; } + Icon.Source = item.Icon; } base.OnBindingContextChanged();