diff --git a/app/Livewire/PanelCheckList.php b/app/Livewire/PanelCheckList.php index c8be0d19c..a793906b4 100644 --- a/app/Livewire/PanelCheckList.php +++ b/app/Livewire/PanelCheckList.php @@ -197,7 +197,7 @@ public $records = []; $characteristic = ProductCharacteristicsMaster::find($characteristicId); - if (! $characteristic || ! is_numeric($value)){ + if (! $characteristic || ! is_numeric($value) || ($value < $characteristic->lower || $value > $characteristic->upper)) { return false; } }