Skip to content

Commit e484f6b

Browse files
committed
Fix styling problem on reviewer overview, apparently the Boostrap CSS
anchor style gives a color to plain anchors instead of only touching a:link so don't put non-link inside <a> - Legacy-Id: 12084
1 parent 27d9c18 commit e484f6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/templates/group/reviewer_overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Reviewers</h2>
2323
<tbody>
2424
{% for person in reviewers %}
2525
<tr {% if person.completely_unavailable %}class="completely-unavailable"{% endif %}>
26-
<td><a {% if person.settings_url %}href="{{ person.settings_url }}"{% endif %}>{{ person }}</a></td>
26+
<td>{% if person.settings_url %}<a href="{{ person.settings_url }}">{% endif %}{{ person }}{% if person.settings_url %}</a>{% endif %}</td>
2727
<td>
2828
<table class="simple-table">
2929
{% for req_pk, doc_name, deadline, state, assignment_to_closure_days in person.latest_reqs %}

0 commit comments

Comments
 (0)