Skip to content

Commit 020d4a3

Browse files
committed
Adds Closing note field to state specific WG edit. Fixes ietf-tools#2779. Commit ready for merge.
- Legacy-Id: 17028
1 parent 34f9393 commit 020d4a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __init__(self, *args, **kwargs):
124124
if field:
125125
keys = list(self.fields.keys())
126126
for f in keys:
127-
if f != field:
127+
if f != field and not (f == 'closing_note' and field == 'state'):
128128
del self.fields[f]
129129

130130
def clean_acronym(self):

0 commit comments

Comments
 (0)