From df6991e2d8e07bec93de2f4f9437948e31b73ff9 Mon Sep 17 00:00:00 2001 From: developer Date: Thu, 2 Apr 2026 09:16:31 +0800 Subject: [PATCH] =?UTF-8?q?=D1=81=D0=B5=D0=BB=D0=B5=D0=BA=D1=82=D0=BE?= =?UTF-8?q?=D1=80=20=D0=BF=D0=BE=D0=BC=D0=B5=D1=89=D0=B5=D0=BD=D0=B8=D0=B9?= =?UTF-8?q?=20=D0=B8=D0=B7=20=D0=B0=D0=BF=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Modules/Plan7/Http/Livewire/Plan7SelectorLivewire.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Modules/Plan7/Http/Livewire/Plan7SelectorLivewire.php b/app/Modules/Plan7/Http/Livewire/Plan7SelectorLivewire.php index a71cadc..2cd9324 100644 --- a/app/Modules/Plan7/Http/Livewire/Plan7SelectorLivewire.php +++ b/app/Modules/Plan7/Http/Livewire/Plan7SelectorLivewire.php @@ -89,7 +89,7 @@ public function render() if (array_key_exists('bs', $this->filter) && $this->filter['bs'] && $room['bs'] != $this->filter['bs']) { continue; } - if (array_key_exists('type', $this->filter) && $this->filter['type'] && $room['type'] != $this->filter['type']) { + if (array_key_exists('type', $this->filter) && $this->filter['type'] !== null && $room['type'] != $this->filter['type']) { continue; } if (array_key_exists('min_area', $this->filter) && $room['area'] < $this->filter['min_area']) {