Skip to content

Commit

Permalink
Merge pull request #43 from AndrewKeepCoding/42-new-annotations-artifact
Browse files Browse the repository at this point in the history
Fix issue in the ScrollBarExtensions sample app that annotation's values were not assigned correctly
  • Loading branch information
AndrewKeepCoding authored Apr 2, 2023
2 parents cfde2ec + 048eb9e commit d4010a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public AnnotationsPage()
Users = new ObservableCollection<User>(
new Faker<User>()
.UseSeed(0)
.RuleFor(u => u.Id, f => f.UniqueIndex + 1)
.RuleFor(u => u.Id, f => f.IndexFaker + 1)
.RuleFor(user => user.FirstName, faker => faker.Name.FirstName())
.RuleFor(user => user.LastName, faker => faker.Name.LastName())
.RuleFor(user => user.Address, faker => faker.Address.State())
Expand Down

0 comments on commit d4010a5

Please sign in to comment.