Skip to content

Commit 0122250

Browse files
fix
1 parent 42e4aa8 commit 0122250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

App/Converters/AgentStatusToColorConverter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ namespace Coder.Desktop.App.Converters;
99
public class AgentStatusToColorConverter : IValueConverter
1010
{
1111
private static readonly SolidColorBrush Green = new(Color.FromArgb(255, 52, 199, 89));
12+
private static readonly SolidColorBrush Yellow = new(Color.FromArgb(255, 204, 1, 0));
1213
private static readonly SolidColorBrush Red = new(Color.FromArgb(255, 255, 59, 48));
1314
private static readonly SolidColorBrush Gray = new(Color.FromArgb(255, 142, 142, 147));
14-
private static readonly SolidColorBrush Yellow = new(Color.FromArgb(255, 204, 1, 0));
1515

1616
public object Convert(object value, Type targetType, object parameter, string language)
1717
{

0 commit comments

Comments
 (0)