Allow '0' for minimum package age setting.

This commit is contained in:
Sander Declerck 2025-12-12 16:35:02 +01:00
parent 4623f3eff8
commit 3d1e4b0489
No known key found for this signature in database
3 changed files with 119 additions and 2 deletions

View file

@ -81,7 +81,7 @@ function validateMinimumPackageAgeHours(value) {
return undefined;
}
if (numericValue > 0) {
if (numericValue >= 0) {
return numericValue;
}