Skip to content

Commit 96cd6bc

Browse files
committed
Return 1plenary for area of plenaries to get closer to the behaviour
of the old models, fixes problem with plenaries only being visible in the week view if GEN is selected. - Legacy-Id: 4083
1 parent 3731f7c commit 96cd6bc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ietf/meeting/proxy.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,9 @@ def area(self):
442442
if not self.session or not self.session.group:
443443
return ""
444444
if self.session.group.type_id == "irtf":
445-
return "irtf"
445+
return "irtf"
446+
if self.type_id == "plenary":
447+
return "1plenary"
446448
if not self.session.group.parent or not self.session.group.parent.type_id in ["area","irtf"]:
447449
return ""
448450
return self.session.group.parent.acronym

0 commit comments

Comments
 (0)