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'],