-
Notifications
You must be signed in to change notification settings - Fork 658
feat: show available sdo groups to liaison coordinators and managers #9856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #9856 +/- ##
==========================================
- Coverage 88.54% 88.54% -0.01%
==========================================
Files 316 316
Lines 42265 42264 -1
==========================================
- Hits 37423 37421 -2
- Misses 4842 4843 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
jennifer-richards
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor cleanup probably worth doing to maintain best practices: remove the import Tuple and use tuple[str, str]. Otherwise looks good.
ietf/templates/base/menu.html
Outdated
| </li> | ||
| {% if user|has_role:"Secretariat,IAB,Liaison Manager,Liaison Coordinator" %} | ||
| <li> | ||
| <a class="dropdown-item {% if flavor != 'top' %}text-wrap{% endif %}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ultra-tiny nit: avoid trailing space when flavor == 'top'
| <a class="dropdown-item {% if flavor != 'top' %}text-wrap{% endif %}" | |
| <a class="dropdown-item{% if flavor != 'top' %} text-wrap{% endif %}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this had been keeping the same format as the other dozen versions of it around it, but I added a commit that changed them all (expanding the scope of the PR a bit).
No description provided.