Fix incorrect case of ldap sync status string (#9563)

Fixes #9562
This commit is contained in:
Jonathon Reinhart 2021-05-12 22:15:39 -04:00 committed by GitHub
parent d636566012
commit fd082addff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,7 +75,7 @@ LDAP User Sync
</tr>
@foreach (Session::get('summary') as $entry)
<tr {!! ($entry['status']=='SUCCESS') ? 'class="success"' : 'class="danger"' !!}>
<tr {!! ($entry['status']=='success') ? 'class="success"' : 'class="danger"' !!}>
<td>{{ $entry['username'] }}</td>
<td>{{ $entry['employee_number'] }}</td>
<td>{{ $entry['firstname'] }}</td>