Skip to content

Commit 8d07791

Browse files
committed
Fix bug in milestones edit JS, check for due date rather than desc as
WG Chairs can't edit the latter - Legacy-Id: 4590
1 parent e556464 commit 8d07791

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

static/js/edit-milestones.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jQuery(function () {
1010

1111
function setSubmitButtonState() {
1212
var action, label;
13-
if (jQuery("#milestones-form input[name$=desc]:visible").length > 0)
13+
if (jQuery("#milestones-form input[name$=due]:visible").length > 0)
1414
action = "review";
1515
else
1616
action = "save";

0 commit comments

Comments
 (0)