mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
refactor<Statistics>: use committer instead of author
This commit is contained in:
parent
e070b79d2c
commit
68ddeb4cc5
7 changed files with 174 additions and 208 deletions
|
@ -33,10 +33,10 @@ namespace SourceGit.Views {
|
|||
set => SetValue(ShapeBrushProperty, value);
|
||||
}
|
||||
|
||||
public static readonly StyledProperty<List<Models.Sample>> SamplesProperty =
|
||||
AvaloniaProperty.Register<Chart, List<Models.Sample>>(nameof(Samples), null);
|
||||
public static readonly StyledProperty<List<Models.StatisticsSample>> SamplesProperty =
|
||||
AvaloniaProperty.Register<Chart, List<Models.StatisticsSample>>(nameof(Samples), null);
|
||||
|
||||
public List<Models.Sample> Samples {
|
||||
public List<Models.StatisticsSample> Samples {
|
||||
get => GetValue(SamplesProperty);
|
||||
set => SetValue(SamplesProperty, value);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue