Skip to content

Commit f46e96c

Browse files
committed
Fix from Henrik to let RGs show up properly in the agenda
- Legacy-Id: 3982
1 parent 6ee6b4b commit f46e96c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def acronym_name(self):
439439
else:
440440
return self.session.group.name
441441
def area(self):
442-
if not self.session or not self.session.group or not self.session.group.parent or not self.session.group.parent.type_id == "area":
442+
if not self.session or not self.session.group or not self.session.group.parent or not self.session.group.parent.type_id in ["area","ietf"]:
443443
return ""
444444
return self.session.group.parent.acronym
445445
def area_name(self):

0 commit comments

Comments
 (0)