version 1.0.2
This commit is contained in:
@@ -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}"));
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user