Skip to content

Commit

Permalink
Update IValidateable.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoCoderMatrix86 committed Jun 4, 2024
1 parent 442097f commit 85dd504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AudioCuesheetEditor/Model/Entity/IValidateable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public List<ValidationMessage>? ValidationMessages
set
{
validationMessages = value;
if ((validationMessages != null) && validationMessages.Any())
if ((validationMessages != null) && validationMessages.Count != 0)
{
Status = ValidationStatus.Error;
}
Expand Down

0 comments on commit 85dd504

Please sign in to comment.