Skip to content

Commit

Permalink
Returning right number for warned projects
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Jul 5, 2019
1 parent 393c29b commit 8fd3995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BuildVision.UI/Models/BuildInformationModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public int FailedProjectsCount
private int _warnedProjectsCount = 0;
public int WarnedProjectsCount
{
get => _warningsCount;
get => _warnedProjectsCount;
set => SetProperty(ref _warnedProjectsCount, value);
}

Expand Down

0 comments on commit 8fd3995

Please sign in to comment.