Better icon for owner

This commit is contained in:
Girish Ramakrishnan
2020-03-06 11:14:25 -08:00
parent 966960c64b
commit 1273dbde76
2 changed files with 3 additions and 3 deletions

View File

@@ -393,8 +393,8 @@
</tr>
<tr ng-repeat="user in users" ng-class="{'text-muted': !user.active}">
<td>
<i class="fas fa-user-tie arrow" ng-show="user.active && user.role === 'owner'" uib-tooltip="This user is the owner" tooltip-class="long nowrap"></i>
<i class="fa fa-briefcase arrow" ng-show="user.active && user.role === 'admin'" uib-tooltip="This user is an admin" tooltip-class="long nowrap"></i>
<i class="fas fa-crown arrow" ng-show="user.active && user.role === 'owner'" uib-tooltip="This user is the owner" tooltip-class="long nowrap"></i>
<i class="fa fa-user-tie arrow" ng-show="user.active && user.role === 'admin'" uib-tooltip="This user is an admin" tooltip-class="long nowrap"></i>
<i class="fas fa-users-cog arrow" ng-show="user.active && user.role === 'usermanager'" uib-tooltip="This user can manage groups and other users" tooltip-class="long nowrap"></i>
<i class="fa fa-ban" ng-show="!user.active" uib-tooltip="User is inactive"></i>
</td>