Skip to content

Commit

Permalink
Fixes fossasia#136 remove empty field validation for doctheme (fossas…
Browse files Browse the repository at this point in the history
  • Loading branch information
pri22296 authored and mariobehling committed Jun 17, 2017
1 parent 1089362 commit 034e03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/scripts/validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
isValid: function(formData) {
var valid = true;
var regex = '';
if (formData.email === "" || formData.gitUrl === "" || formData.docTheme === "") {
if (formData.email === "" || formData.gitUrl === "") {
messages.push("Empty field(s)");
valid = false;
}
Expand Down

0 comments on commit 034e03b

Please sign in to comment.