From 1ff34fd89a51f0b2fcd082dce50fdb38310d3786 Mon Sep 17 00:00:00 2001 From: alexander Date: Thu, 20 Feb 2025 13:30:11 +0200 Subject: [PATCH] fix(ui): fix EditMessageControl properties References #382 --- .../Eppie.App.UI.Shared/Controls/EditMessageControl.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Eppie.App/Eppie.App.UI/Eppie.App.UI.Shared/Controls/EditMessageControl.xaml.cs b/src/Eppie.App/Eppie.App.UI/Eppie.App.UI.Shared/Controls/EditMessageControl.xaml.cs index 685faafa..0841d563 100644 --- a/src/Eppie.App/Eppie.App.UI/Eppie.App.UI.Shared/Controls/EditMessageControl.xaml.cs +++ b/src/Eppie.App/Eppie.App.UI/Eppie.App.UI.Shared/Controls/EditMessageControl.xaml.cs @@ -17,7 +17,7 @@ public string Text } public static readonly DependencyProperty TextProperty = - DependencyProperty.Register(nameof(Text), typeof(string), typeof(MessageControl), new PropertyMetadata(null)); + DependencyProperty.Register(nameof(Text), typeof(string), typeof(EditMessageControl), new PropertyMetadata(null)); public string Html { @@ -26,7 +26,7 @@ public string Html } public static readonly DependencyProperty HtmlProperty = - DependencyProperty.Register(nameof(Html), typeof(string), typeof(MessageControl), new PropertyMetadata(null)); + DependencyProperty.Register(nameof(Html), typeof(string), typeof(EditMessageControl), new PropertyMetadata(null)); public EditMessageControl() {