From 1031ddcd83039e165da7fa94ac1ac324dbf9b2f4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 12 Mar 2018 22:46:46 -0400 Subject: [PATCH] proper class on ExtendedViewCell --- src/App/Controls/ExtendedViewCell.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Controls/ExtendedViewCell.cs b/src/App/Controls/ExtendedViewCell.cs index 9a6813273..80dbaa359 100644 --- a/src/App/Controls/ExtendedViewCell.cs +++ b/src/App/Controls/ExtendedViewCell.cs @@ -6,10 +6,10 @@ namespace Bit.App.Controls public class ExtendedViewCell : ViewCell { public static readonly BindableProperty BackgroundColorProperty = - BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(ExtendedTextCell), Color.White); + BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(ExtendedViewCell), Color.White); public static readonly BindableProperty ShowDisclousureProperty = - BindableProperty.Create(nameof(ShowDisclousure), typeof(bool), typeof(ExtendedTextCell), false); + BindableProperty.Create(nameof(ShowDisclousure), typeof(bool), typeof(ExtendedViewCell), false); public Color BackgroundColor {