Skip to content

Commit

Permalink
Update index.md (#798)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe-Laval authored Sep 4, 2023
1 parent 060a260 commit 1acb5a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions input/docs/handbook/design-time/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public class DesignTimeAboutViewModel : IAboutViewModel
{
AboutSections = new List<AboutSectionViewModel>
{
new AboutSection {Title = "Title 1", Body = "Lorum Ipsum"},
new AboutSection {Title = "Title 2", Body = "Lorum Ipsum"},
new AboutSection {Title = "Title 3", Body = "Lorum Ipsum"}
new AboutSectionViewModel {Title = "Title 1", Body = "Lorum Ipsum"},
new AboutSectionViewModel {Title = "Title 2", Body = "Lorum Ipsum"},
new AboutSectionViewModel {Title = "Title 3", Body = "Lorum Ipsum"}
});
RefreshCommand = ReactiveCommand.CreateFromTask(o => Task.FromResult(new AboutFeed()));
}
Expand Down

0 comments on commit 1acb5a3

Please sign in to comment.