Skip to content

Commit

Permalink
Merge pull request #3 from kporras07/24971-status-change
Browse files Browse the repository at this point in the history
refs #24971: Avoid status change when not change is selected.
  • Loading branch information
WuCris authored Dec 7, 2020
2 parents 8d032f5 + efcad22 commit 07479c4
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 07479c4

Please sign in to comment.