version 1.0.2

This commit is contained in:
meelstorm
2025-09-19 16:26:32 +02:00
parent 0abd273154
commit 54098b4aaf
3 changed files with 4 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ public partial class StatisticsVM: ObservableObject,IEventHandler<ImageProcessed
_errorTypes[name] = _errorTypes.TryGetValue(name, out var count) ? count + 1 : 1;
}
StatisticsDetails = string.Join(Environment.NewLine, _errorTypes.Select(e => $"{e.Key}: {e.Value}"));
StatisticsDetails = string.Join(Environment.NewLine, _errorTypes.OrderBy(e=>e.Key).Select(e => $"{e.Key}: {e.Value}"));
}