aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/templates/views/thread.html
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2024-03-17 07:55:22 +0300
committerGravatar Vitaly Takmazov2024-03-17 07:55:22 +0300
commit8207857f4a3ab8a3bdae8aa248637700c6072dd0 (patch)
treee597af01157029face1464ae5d2e52b04fbd565c /src/main/resources/templates/views/thread.html
parent0e1f88d67d1b9c77a854a887da45a10994cf91f3 (diff)
Do not resolve nicknames for recommendations
Diffstat (limited to 'src/main/resources/templates/views/thread.html')
-rw-r--r--src/main/resources/templates/views/thread.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/views/thread.html b/src/main/resources/templates/views/thread.html
index 19d81d75..e3fdee40 100644
--- a/src/main/resources/templates/views/thread.html
+++ b/src/main/resources/templates/views/thread.html
@@ -110,7 +110,7 @@
{% if rec.uri.toString() is empty %}
<a href="/{{ rec.name }}/">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %}
{% else %}
- <a href="{{ rec.uri }}" data-user-uri="1">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %}
+ <a href="{{ rec.uri }}">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %}
{% endif %}
{% endfor %}
</div>