Skip to content

Commit

Permalink
#4 Fix broken status dropdown due breaking changes at angular-ui-boot…
Browse files Browse the repository at this point in the history
  • Loading branch information
simison committed Nov 20, 2014
1 parent fabe387 commit c4a39df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/modules/offers/views/view-offers.client.view.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Accommodation
<!-- Button + dropdown for user's own profile -->
<div ng-show="user._id === profile._id && (offer && offer.$resolved)" class="pull-right btn-group" dropdown is-open="hostingDropdown">
<button class="btn btn-sm dropdown-toggle btn-hosting btn-hosting-yes" ng-class="{'btn-hosting-yes': offer.status === 'yes', 'btn-hosting-maybe': offer.status === 'maybe', 'btn-hosting-no': (!offer || offer.status === 'no')}">
<button class="btn btn-sm dropdown-toggle btn-hosting btn-hosting-yes" dropdown-toggle ng-class="{'btn-hosting-yes': offer.status === 'yes', 'btn-hosting-maybe': offer.status === 'maybe', 'btn-hosting-no': (!offer || offer.status === 'no')}">
{{ hostingStatusLabel() }}
<span class="caret"></span>
</button>
Expand Down

0 comments on commit c4a39df

Please sign in to comment.