Remove limit for purchases

This commit is contained in:
Ludovic Stephan 2021-04-16 16:42:12 +02:00
parent e36e88e77a
commit b48d32f4bc

View file

@ -713,7 +713,7 @@ $(document).ready(function() {
});
function is_nb_ok(nb) {
return /^[0-9]+$/.test(nb) && nb > 0 && nb <= 24;
return /^[0-9]+$/.test(nb) && nb > 0;
}
articleNb.on('keydown', function(e) {