Skip to content

Commit

Permalink
refs #24971: Avoid status change when not change is selected.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Dec 7, 2020
1 parent 8d032f5 commit efcad22
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@
}
if ($('input[name="issue_suggest_status"]:checked').val()) {
var statusId = $('input[name="issue_suggest_status"]:checked').val();
$('#issue_status_id').val(statusId);
if (statusId != 0) {
$('#issue_status_id').val(statusId);
}
}
});
}
Expand Down

0 comments on commit efcad22

Please sign in to comment.