Skip to content

Commit

Permalink
SAK-43601 - Group Manager: Enable the add button if the title has a v…
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Pellicer authored Apr 25, 2020
1 parent aaaa77e commit d8ededa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@
// Initialize tooltips
$('[data-toggle="tooltip"]').tooltip();

//Disable the submit button
$('#create-group-submit-button').prop('disabled', true);
//Disable or enable the submit depending on the group title value.
$('#create-group-submit-button').prop('disabled', $('#groupTitle').val() === '');

//Enable or disable the submit button depending on the required fields
$('input[type="text"]').keyup(function() {
Expand Down

0 comments on commit d8ededa

Please sign in to comment.