Skip to content

Commit 0bd8243

Browse files
committed
Fix problem with milestones editing claiming that all resolved
milestones have been changed when you click the review changes button (by removing work-around for bug in previous version of Django) - Legacy-Id: 7769
1 parent 9579525 commit 0bd8243

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/milestones.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(self, *args, **kwargs):
5454
desc=m.desc,
5555
due_month=m.due.month,
5656
due_year=m.due.year,
57-
resolved_checkbox="on" if m.resolved else False,
57+
resolved_checkbox=bool(m.resolved),
5858
resolved=m.resolved,
5959
docs=",".join(m.docs.values_list("pk", flat=True)),
6060
delete=False,

0 commit comments

Comments
 (0)