Skip to content

Commit

Permalink
Merge pull request BlogEngine#157 from serdnab/cat-desc-val-length
Browse files Browse the repository at this point in the history
length validation of category description
  • Loading branch information
farzindev authored Apr 2, 2021
2 parents 7918f8c + ffeeaac commit 7f695b4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@
bindCommon();
$('#form').validate({
rules: {
txtSlug: { required: true }
txtSlug: { required: true },
txtExcerpt: { maxlength: 200 }
}
});
});
Expand Down

0 comments on commit 7f695b4

Please sign in to comment.