Fix rendering of objectclass in server info, consistent use of true/false/null in view blades
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 31s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m33s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 2m48s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
2025-06-27 18:44:25 +10:00
parent 29a659ff69
commit b22c9505bc
5 changed files with 13 additions and 9 deletions

View File

@@ -21,7 +21,11 @@
: $attribute !!}
</th>
<td>
<x-attribute :edit="false" :o="$ao"/>
@if($ao instanceof \App\Classes\LDAP\Attribute\Schema\OID)
<x-attribute :edit="false" :o="$ao"/>
@else
{!! $ao->values_old->dot()->join('<br>') !!}
@endif
</td>
</tr>
@endforeach