Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(user): remove bad request for local.png (#1538)
Browse files Browse the repository at this point in the history
Removes a bad image request from manage social account settings page
Ideas from #1537, suggestions from @mleanos

Fixes #1537
  • Loading branch information
sujeethk authored and mleanos committed Oct 2, 2016
1 parent 0736a40 commit 287f81c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h3 class="col-md-12 text-center" ng-show="vm.hasConnectedAdditionalSocialAccounts()">Connected social accounts:</h3>
<div class="col-md-12 text-center">
<!-- If the user's provider field (primary) is a social account, show it here -->
<div ng-hide="vm.user.provider === 'local'" class="social-account-container">
<div ng-if="vm.user.provider !== 'local'" class="social-account-container">
<img ng-src="/modules/users/client/img/buttons/{{vm.user.provider}}.png">
<i class="glyphicon glyphicon-check text-success user-primary-account" data-toggle="popover" title="Primary: {{vm.user.provider}}"></i>
</div>
Expand Down

0 comments on commit 287f81c

Please sign in to comment.