Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes bug for post "Using the ASP.NET MVC view model on the client wi…
…th Aurelia bindings"
  • Loading branch information
deap82 committed Jul 12, 2017
1 parent 70bedc1 commit af6fbf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FooBar.Web/Views/Home/Person.cshtml
Expand Up @@ -27,7 +27,7 @@

<div class="form-group">
<label>Full name</label>
<div>${firstName} ${lastName}</div>
<div>${data.firstName} ${data.lastName}</div>
</div>

<div class="form-group">
Expand All @@ -42,7 +42,7 @@

<div class="form-group">
<label>Year of birth</label>
<div>${ currentYear - age }</div>
<div>${ currentYear - data.age }</div>
</div>

<div class="form-group"><button>OK</button></div>
Expand Down

0 comments on commit af6fbf0

Please sign in to comment.