From 4197b61905538b9de9befcc77fc1a94336c111c2 Mon Sep 17 00:00:00 2001 From: boban Date: Tue, 28 Oct 2025 19:05:01 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Mailbox=20Stats=20=C3=BCber=20Dovecot=20?= =?UTF-8?q?mit=20config/mailpool.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Livewire/Ui/System/StorageCard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Ui/System/StorageCard.php b/app/Livewire/Ui/System/StorageCard.php index aa59dd3..a779a6a 100644 --- a/app/Livewire/Ui/System/StorageCard.php +++ b/app/Livewire/Ui/System/StorageCard.php @@ -154,7 +154,7 @@ class StorageCard extends Component $out = []; foreach ($defs as $d) { $val = max(0, (int)($bdBytes[$d['key']] ?? 0)); - if ($val < $this->legendMinBytes) continue; // zu klein → nicht anzeigen + if ($val <= 0) continue; // zu klein → nicht anzeigen $out[] = [ 'label' => $d['label'], 'color' => $d['class'],