Fix showing DN icon for RootDSE, fix readme git clone

This commit is contained in:
Deon George
2021-03-02 22:19:00 +11:00
parent 851010d6d5
commit 48131c1b4e
4 changed files with 10 additions and 4 deletions

View File

@@ -102,6 +102,9 @@ class Entry extends Model
elseif (in_array('server',$objectclasses))
return 'fas fa-server';
elseif (in_array('openldaprootdse',$objectclasses))
return 'fas fa-info';
// Default
return 'fa-fw fas fa-cog';
}