Fix: Mailbox Stats über Dovecot mit config/mailpool.php

main v1.0.33
boban 2025-10-25 14:09:59 +02:00
parent b8013d198b
commit 1f2634b054
2 changed files with 7 additions and 5 deletions

View File

@ -85,7 +85,7 @@
{{-- Footer Toggle (Desktop/Tablet) --}} {{-- Footer Toggle (Desktop/Tablet) --}}
<div class="p-5 border-t hr flex justify-center items-center"> <div class="p-5 border-t hr flex justify-center items-center">
<div class="sidebar-label text-[10px] text-slate-300/70 whitespace-nowrap"> <div class="sidebar-label text-[10px] text-slate-300/70 whitespace-nowrap">
<span class="text-xs text-white/40">{{ config('app.name') }} | v{{ config('app.version') }}</span> <span class="text-xs text-white/40">{{ config('app.name') }} | {{ config('app.version') }}</span>
</div> </div>
{{-- <button type="button"--}} {{-- <button type="button"--}}

View File

@ -132,15 +132,17 @@
<div class="text-white/90 font-semibold">{{ config('app.name') }} Update</div> <div class="text-white/90 font-semibold">{{ config('app.name') }} Update</div>
<div class="text-xs text-white/70"> <div class="text-xs text-white/70">
@if($current) {{-- aktuell --}}
aktuell: <span class="text-white/90">{{ $current }}</span> @if($displayCurrent)
aktuell: <span class="text-white/90">{{ $displayCurrent }}</span>
@else @else
aktuell: <span class="text-white/60"></span> aktuell: <span class="text-white/60"></span>
@endif @endif
@if($latest) {{-- verfügbar --}}
@if($displayLatest)
<span class="mx-1 text-white/30"></span> <span class="mx-1 text-white/30"></span>
verfügbar: <span class="text-emerald-200">{{ $latest }}</span> verfügbar: <span class="text-emerald-200">{{ $displayLatest }}</span>
@endif @endif
</div> </div>
</div> </div>