Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
omerfaruk-aran authored Oct 28, 2024
1 parent 697f950 commit 153278f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/model-checker/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ function checkModel() {
const model = document.getElementById("modelInput").value.toUpperCase();
const result = document.getElementById("result");

if (model.length < 10) {
if (model.length < 9) {
result.textContent = "Please enter a valid model number.";
return;
}
Expand Down

0 comments on commit 153278f

Please sign in to comment.