Skip to content

Commit 367ea6c

Browse files
authored
Merge pull request #81299 from phresnel/patch-1
Fix casing in 'vote.key' to '.Key'
2 parents 6b417c8 + 352ac93 commit 367ea6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/service-fabric/service-fabric-tutorial-create-dotnet-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Open **Views/Home/Index.cshtml**, the view specific to the Home controller. Rep
146146
</div>
147147
<div class="row top-buffer" ng-repeat="vote in votes.data">
148148
<div class="col-xs-8">
149-
<button class="btn btn-success text-left btn-block" ng-click="add(vote.key)">
149+
<button class="btn btn-success text-left btn-block" ng-click="add(vote.Key)">
150150
<span class="pull-left">
151151
{{vote.key}}
152152
</span>
@@ -156,7 +156,7 @@ Open **Views/Home/Index.cshtml**, the view specific to the Home controller. Rep
156156
</button>
157157
</div>
158158
<div class="col-xs-4">
159-
<button class="btn btn-danger pull-right btn-block" ng-click="remove(vote.key)">
159+
<button class="btn btn-danger pull-right btn-block" ng-click="remove(vote.Key)">
160160
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
161161
Remove
162162
</button>

0 commit comments

Comments
 (0)