diff --git a/FModel/Views/Resources/Controls/EndpointEditor.xaml.cs b/FModel/Views/Resources/Controls/EndpointEditor.xaml.cs index 7f530c99..215010d1 100644 --- a/FModel/Views/Resources/Controls/EndpointEditor.xaml.cs +++ b/FModel/Views/Resources/Controls/EndpointEditor.xaml.cs @@ -1,6 +1,7 @@ using System.Diagnostics; using System.Windows; using System.Windows.Controls; +using System.Windows.Media; using FModel.Extensions; using FModel.Services; using FModel.Settings; @@ -23,8 +24,9 @@ public partial class EndpointEditor InitializeComponent(); Title = title; - TargetResponse.SyntaxHighlighting = - EndpointResponse.SyntaxHighlighting = AvalonExtensions.HighlighterSelector("json"); + TargetResponse.SyntaxHighlighting = EndpointResponse.SyntaxHighlighting = AvalonExtensions.HighlighterSelector("json"); + TargetResponse.TextArea.TextView.LinkTextForegroundBrush = Brushes.DodgerBlue; + EndpointResponse.TextArea.TextView.LinkTextForegroundBrush = Brushes.DodgerBlue; InstructionBox.Text = type switch {