You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
Manage social accounts settings page currently does one bad request for a non-existent file.
This needs to change on L6 of manage-social-accounts.client.view.html: <img ng-src="/modules/users/client/img/buttons/{{vm.user.provider}}.png">
to: <img ng-src="{{vm.user.provider === 'local' ? '' : '/modules/users/client/img/buttons/'+vm.user.provider+'.png'}}">
The text was updated successfully, but these errors were encountered:
For some reason when i tried ng-if last night it wasn't working. I retried on a fresh copy of master and ng-if now and it works fine. Maybe i was doing something stupid
Manage social accounts settings page currently does one bad request for a non-existent file.
This needs to change on L6 of manage-social-accounts.client.view.html:
<img ng-src="/modules/users/client/img/buttons/{{vm.user.provider}}.png">
to:
<img ng-src="{{vm.user.provider === 'local' ? '' : '/modules/users/client/img/buttons/'+vm.user.provider+'.png'}}">
The text was updated successfully, but these errors were encountered: