Merge pull request 'Added logic in panel check list' (#796) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 25s

Reviewed-on: #796
This commit was merged in pull request #796.
This commit is contained in:
2026-07-03 02:57:34 +00:00

View File

@@ -197,7 +197,7 @@ public $records = [];
$characteristic = ProductCharacteristicsMaster::find($characteristicId); $characteristic = ProductCharacteristicsMaster::find($characteristicId);
if (! $characteristic || ! is_numeric($value)){ if (! $characteristic || ! is_numeric($value) || ($value < $characteristic->lower || $value > $characteristic->upper)) {
return false; return false;
} }
} }