Skip to content

Commit

Permalink
fix: Do not force showAgenda when agenda_note is set (#7142)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Mar 5, 2024
1 parent 3afd6ca commit 5e8b7ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/meeting/views.py
Expand Up @@ -1762,7 +1762,7 @@ def agenda_extract_schedule (item):
"remoteInstructions": item.session.remote_instructions,
"flags": {
"agenda": True if item.session.agenda() is not None else False,
"showAgenda": True if (item.session.agenda() is not None or item.session.remote_instructions or item.session.agenda_note) else False
"showAgenda": True if (item.session.agenda() is not None or item.session.remote_instructions) else False
},
"agenda": {
"url": item.session.agenda().get_href()
Expand Down

0 comments on commit 5e8b7ad

Please sign in to comment.