Skip to content

Commit

Permalink
Fix order of price/rating in view
Browse files Browse the repository at this point in the history
Proposed fix for issue IgorMinar#14 - Price and Rating are in the wrong order in the view
  • Loading branch information
lldh authored Oct 29, 2018
1 parent 8e15f0c commit c679bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/restaurants.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ <h4>
<table class="table table-hover table-striped">
<tr>
<th><a href ng-click="sortBy('name')">Name {{sortIconFor('name')}}</a></th>
<th><a href ng-click="sortBy('price')">Price {{sortIconFor('price')}}</a></th>
<th><a href ng-click="sortBy('rating')">Rating {{sortIconFor('rating')}}</a></th>
<th><a href ng-click="sortBy('price')">Price {{sortIconFor('price')}}</a></th>
</tr>
<tr ng-repeat="restaurant in restaurants">
<td>
Expand Down

0 comments on commit c679bfd

Please sign in to comment.