Skip to content

Commit 16c5e24

Browse files
Synchronize the currently set tags when document state is edited
- Legacy-Id: 8602
1 parent b74d4e7 commit 16c5e24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/views_draft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1428,7 +1428,7 @@ def change_stream_state(request, name, state_type):
14281428

14291429
return HttpResponseRedirect(doc.get_absolute_url())
14301430
else:
1431-
form = ChangeStreamStateForm(initial=dict(new_state=prev_state.pk if prev_state else None),
1431+
form = ChangeStreamStateForm(initial=dict(new_state=prev_state.pk if prev_state else None, tags= doc.tags.all()),
14321432
doc=doc, state_type=state_type)
14331433

14341434
milestones = doc.groupmilestone_set.all()

0 commit comments

Comments
 (0)