Skip to content
Snippets Groups Projects
Commit b01e33b5 authored by Chris Lawton's avatar Chris Lawton
Browse files

wrap author name in a span as it may not always be a link

parent 1ba71ddd
No related branches found
No related tags found
No related merge requests found
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
<td class="reviews-sidebar__author" colspan="2"> <td class="reviews-sidebar__author" colspan="2">
{% if request.user.is_apply_staff %} {% if request.user.is_apply_staff %}
<a href="{% url 'apply:reviews:review' submission_pk=review.submission.id pk=review.id %}"> <a href="{% url 'apply:reviews:review' submission_pk=review.submission.id pk=review.id %}">
{{ review.author }} <span>{{ review.author }}</span>
</a> </a>
{% else %} {% else %}
{{ review.author }} <span>{{ review.author }}</span>
{% endif %} {% endif %}
</td> </td>
<td>{{ review.get_recommendation_display }}</td> <td>{{ review.get_recommendation_display }}</td>
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
} }
&__author { &__author {
a { span {
position: relative; position: relative;
z-index: 1; z-index: 1;
display: block; display: block;
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
} }
&:hover { &:hover {
a { span {
display: inline; display: inline;
overflow: visible; overflow: visible;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment