Merge pull request #11300 from snipe/fixes/fa_map_icon_in_chrome

Fixed font-awesome leading class
This commit is contained in:
snipe 2022-06-13 18:37:04 -07:00 committed by GitHub
commit ef3e016667
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -318,7 +318,7 @@
item_icon = 'fas fa-user';
} else if (value.type == 'location') {
item_destination = 'locations'
item_icon = 'far fa-map-marker-alt';
item_icon = 'fas fa-map-marker-alt';
}
return '<nobr><a href="{{ url('/') }}/' + item_destination +'/' + value.id + '" data-tooltip="true" title="' + value.type + '"><i class="' + item_icon + ' text-{{ $snipeSettings->skin!='' ? $snipeSettings->skin : 'blue' }} "></i> ' + value.name + '</a></nobr>';