Skip to content

Commit

Permalink
Merged in [8602] from suresh.krishnan@ericsson.com:\n Fixes issue #1295.
Browse files Browse the repository at this point in the history
    Synchronize the currently set tags when document state is edited
 - Legacy-Id: 8613
Note: SVN reference [8602] has been migrated to Git commit 16c5e24
  • Loading branch information
levkowetz committed Nov 9, 2014
2 parents 338848a + 16c5e24 commit 8b93881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/doc/views_draft.py
Original file line number Diff line number Diff line change
Expand Up @@ -1428,7 +1428,7 @@ def change_stream_state(request, name, state_type):

return HttpResponseRedirect(doc.get_absolute_url())
else:
form = ChangeStreamStateForm(initial=dict(new_state=prev_state.pk if prev_state else None),
form = ChangeStreamStateForm(initial=dict(new_state=prev_state.pk if prev_state else None, tags= doc.tags.all()),
doc=doc, state_type=state_type)

milestones = doc.groupmilestone_set.all()
Expand Down

0 comments on commit 8b93881

Please sign in to comment.