Fixed incorrect glyphs for users/locations

This commit is contained in:
snipe 2017-11-30 16:40:58 -08:00
parent e9fdf06bf6
commit fd4a8edae9
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ class LocationPresenter extends Presenter
public function glyph()
{
return '<i class="fa fa-globe"></i>';
return '<i class="fa fa-map-marker"></i>';
}
public function fullName() {

View file

@ -352,6 +352,6 @@ class UserPresenter extends Presenter
public function glyph()
{
return '<i class="fa fa-users"></i>';
return '<i class="fa fa-user"></i>';
}
}