diff --git a/Dashboard/Controls/AlertsHistoryContent.xaml.cs b/Dashboard/Controls/AlertsHistoryContent.xaml.cs index 132cb1d8..ef85d722 100644 --- a/Dashboard/Controls/AlertsHistoryContent.xaml.cs +++ b/Dashboard/Controls/AlertsHistoryContent.xaml.cs @@ -373,7 +373,7 @@ private void CopyAllRows_Click(object sender, RoutedEventArgs e) var sb = new StringBuilder(); var headers = dataGrid.Columns .OfType() - .Select(c => TabHelpers.GetColumnHeader(c)) + .Select(c => Helpers.DataGridClipboardBehavior.GetHeaderText(c)) .ToList(); sb.AppendLine(string.Join("\t", headers)); @@ -406,7 +406,7 @@ private void ExportToCsv_Click(object sender, RoutedEventArgs e) var sb = new StringBuilder(); var headers = dataGrid.Columns .OfType() - .Select(c => TabHelpers.EscapeCsvField(TabHelpers.GetColumnHeader(c))) + .Select(c => TabHelpers.EscapeCsvField(Helpers.DataGridClipboardBehavior.GetHeaderText(c))) .ToList(); sb.AppendLine(string.Join(",", headers)); diff --git a/Dashboard/Controls/ConfigChangesContent.xaml b/Dashboard/Controls/ConfigChangesContent.xaml new file mode 100644 index 00000000..e5aeb648 --- /dev/null +++ b/Dashboard/Controls/ConfigChangesContent.xaml @@ -0,0 +1,282 @@ + + + + + + + + + + +