Merged in [9996] from olau@iola.dk:
Summary: Fix missing save button when deleting milestones. Fixes #1762.
- Legacy-Id: 10024
Note: SVN reference [9996] has been migrated to Git commit 3e76aa1f43
This commit is contained in:
commit
474986b3a2
|
@ -32,7 +32,7 @@ $(document).ready(function () {
|
|||
|
||||
var submit = milestonesForm.find("[type=submit]");
|
||||
submit.text(submit.data("label" + action));
|
||||
if (milestonesForm.find(".edit-milestone.changed").length > 0 || action == "review")
|
||||
if (milestonesForm.find(".edit-milestone.changed,.edit-milestone.delete").length > 0 || action == "review")
|
||||
submit.show();
|
||||
else
|
||||
submit.hide();
|
||||
|
|
Loading…
Reference in a new issue