Skip to content

Commit

Permalink
changed max playbook and workflow names to 50 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
egk865 committed Apr 25, 2017
1 parent a9c4516 commit f211b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/static/pages/playbook/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -935,9 +935,9 @@ $(function(){
allFields.removeClass( "ui-state-error" );

if (!isInput1Hidden)
valid = valid && checkLength( input1, label1Text, 1, 255 );
valid = valid && checkLength( input1, label1Text, 1, 50 );
if (!isInput2Hidden)
valid = valid && checkLength( input2, label2Text, 1, 255 );
valid = valid && checkLength( input2, label2Text, 1, 50 );
valid = valid && customValidation(input1.val(), input2.val());
if (valid) {
submitCallback(input1.val(), input2.val());
Expand Down

0 comments on commit f211b51

Please sign in to comment.