Skip to content

Commit

Permalink
Category required in bug_actiongroup_page.php
Browse files Browse the repository at this point in the history
Following-up on making the field required when reporting a new issue
(see issue #26686), we can leverage the new behavior of the "(select)"
OPTION by making the SELECT required to force user to select a value
when performing a batch update of the category.
  • Loading branch information
dregad committed Feb 17, 2020
1 parent 29bdffa commit df0dc34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bug_actiongroup_page.php
Expand Up @@ -303,7 +303,7 @@
'" value="' . $t_date_to_display . '" />';
echo '<i class="fa fa-calendar fa-xlg datetimepicker"></i>';
} else {
echo '<select name="' . $t_form . '" class="input-sm">';
echo '<select name="' . $t_form . '" class="input-sm" required>';

switch( $f_action ) {
case 'COPY':
Expand Down

0 comments on commit df0dc34

Please sign in to comment.